summaryrefslogtreecommitdiff
path: root/rust-book/hello_world/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust-book/hello_world/main.rs')
-rwxr-xr-xrust-book/hello_world/main.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/rust-book/hello_world/main.rs b/rust-book/hello_world/main.rs
new file mode 100755
index 0000000..3d46bbe
--- /dev/null
+++ b/rust-book/hello_world/main.rs
@@ -0,0 +1,4 @@
+fn main() {
+ println!("hello world!");
+}
+