Initial commit

This commit is contained in:
hodasemi 2022-02-12 08:28:38 +01:00
commit 8c11eaa9ab
4 changed files with 19 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

7
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,7 @@
{
"workbench.colorCustomizations": {
"activityBar.background": "#263208",
"titleBar.activeBackground": "#36460B",
"titleBar.activeForeground": "#F7FCEC"
}
}

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "audio_testing"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}