From 5cc4705b2125a0187c3c9860707114df01848e45 Mon Sep 17 00:00:00 2001 From: LinlyBoi Date: Sat, 29 Apr 2023 14:10:42 +0300 Subject: [PATCH] obligatory hello world of every cargo new :) --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/main.rs diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}