diff options
| author | Yuval Adam <_@yuv.al> | 2017-01-12 18:32:49 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2017-01-12 18:32:49 +0200 |
| commit | f78e6b3f8de875ef95b2278558044558e5e050f2 (patch) | |
| tree | a1cc480cf80da9c802512309a02fb1df36e1d75d | |
| parent | f66dbac7160babd5a45cf088eb9cd572bba98831 (diff) | |
The canonical hello world
| -rw-r--r-- | hello/hello.rs | 3 |
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"); +} |
