summaryrefslogtreecommitdiffstats
path: root/examples/01_hello.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-07-02 02:54:21 -0400
committerJesse Luehrs <doy@tozt.net>2014-07-02 02:54:21 -0400
commite620daf3b1a40ae825c625bc4328fb7d2b3ee8b6 (patch)
treefaa469408ee78623eaa8d2720dcbb36096788ca1 /examples/01_hello.rs
downloadintro-to-rust-yapc-na-2014-master.tar.gz
intro-to-rust-yapc-na-2014-master.zip
initial commitHEADmaster
Diffstat (limited to 'examples/01_hello.rs')
-rw-r--r--examples/01_hello.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/01_hello.rs b/examples/01_hello.rs
new file mode 100644
index 0000000..056d90f
--- /dev/null
+++ b/examples/01_hello.rs
@@ -0,0 +1,4 @@
+fn main () {
+ println!("Hello world!")
+}
+