summaryrefslogtreecommitdiff
path: root/hello
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2017-01-12 18:32:49 +0200
committerYuval Adam <_@yuv.al>2017-01-12 18:32:49 +0200
commitf78e6b3f8de875ef95b2278558044558e5e050f2 (patch)
treea1cc480cf80da9c802512309a02fb1df36e1d75d /hello
parentf66dbac7160babd5a45cf088eb9cd572bba98831 (diff)
The canonical hello world
Diffstat (limited to 'hello')
-rw-r--r--hello/hello.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/hello/hello.rs b/hello/hello.rs
new file mode 100644
index 0000000..bcb94c2
--- /dev/null
+++ b/hello/hello.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world");
+}