diff options
author | garhve <git@garhve.com> | 2022-12-20 01:48:54 +0800 |
---|---|---|
committer | garhve <git@garhve.com> | 2022-12-20 01:48:54 +0800 |
commit | 0f1b6d015243e55a38b1c1b7e8af66668e4e794d (patch) | |
tree | 3bbed2134224e5738eb1ad2ca16c353e70afcee1 | |
parent | f2454ebf3d01d5f279e037c2b4e354d2ee6a12ea (diff) |
Start learning rust
-rw-r--r-- | rust/theBook/chapter-1/helloworld.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rust/theBook/chapter-1/helloworld.rs b/rust/theBook/chapter-1/helloworld.rs new file mode 100644 index 0000000..f6320bc --- /dev/null +++ b/rust/theBook/chapter-1/helloworld.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello World"); +} |