瀏覽代碼

Added rust project

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