Browse Source

Added rust project

1ffy 1 month ago
parent
commit
b71b73c884
2 changed files with 9 additions and 0 deletions
  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!");
+}