diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rust/hello/TARGETS | 6 | ||||
-rw-r--r-- | src/rust/hello/main.rs | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/rust/hello/TARGETS b/src/rust/hello/TARGETS new file mode 100644 index 0000000..348e7fe --- /dev/null +++ b/src/rust/hello/TARGETS @@ -0,0 +1,6 @@ +{ "": + { "type": ["@", "rust", "rust", "binary"] + , "name": ["hello"] + , "crate_root": ["main.rs"] + } +} diff --git a/src/rust/hello/main.rs b/src/rust/hello/main.rs new file mode 100644 index 0000000..21e1c4e --- /dev/null +++ b/src/rust/hello/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, World!"); +} |