소스 검색

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