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!");
+}