diff --git a/the_first/Cargo.lock b/the_first/Cargo.lock new file mode 100644 index 0000000..954c2b2 --- /dev/null +++ b/the_first/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "the_first" +version = "0.1.0" diff --git a/the_first/Cargo.toml b/the_first/Cargo.toml new file mode 100644 index 0000000..e50b8bc --- /dev/null +++ b/the_first/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "the_first" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/the_first/src/main.rs b/the_first/src/main.rs new file mode 100644 index 0000000..726f34b --- /dev/null +++ b/the_first/src/main.rs @@ -0,0 +1,4 @@ +fn main() { + // ! means that println is a macro. Macros are used to handle token streams. + println!("Hello, world!"); +}