summaryrefslogtreecommitdiff
path: root/rust
diff options
context:
space:
mode:
authorgarhve <git@garhve.com>2022-12-20 01:48:54 +0800
committergarhve <git@garhve.com>2022-12-20 01:48:54 +0800
commit0f1b6d015243e55a38b1c1b7e8af66668e4e794d (patch)
tree3bbed2134224e5738eb1ad2ca16c353e70afcee1 /rust
parentf2454ebf3d01d5f279e037c2b4e354d2ee6a12ea (diff)
Start learning rust
Diffstat (limited to 'rust')
-rw-r--r--rust/theBook/chapter-1/helloworld.rs3
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");
+}