diff --git a/.gitignore b/.gitignore index ab951f8..620f8f6 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,8 @@ Cargo.lock # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + + +# Added by cargo + +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..07e4804 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "befehlswerk" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}