1ffy пре 1 месец
родитељ
комит
b71b73c884
2 измењених фајлова са 9 додато и 0 уклоњено
  1. 6 0
      test-project/Cargo.toml
  2. 3 0
      test-project/src/main.rs

+ 6 - 0
test-project/Cargo.toml

@@ -0,0 +1,6 @@
+[package]
+name = "test-project"
+version = "0.1.0"
+edition = "2025"
+
+[dependencies]

+ 3 - 0
test-project/src/main.rs

@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}