瀏覽代碼

hello, world! (in rust, not quite the first time)

Lucas Stadler 10 年之前
父節點
當前提交
c74fb1aa85
共有 2 個文件被更改,包括 6 次插入0 次删除
  1. 3 0
      rust/book/.gitignore
  2. 3 0
      rust/book/main.rs

+ 3 - 0
rust/book/.gitignore

@ -0,0 +1,3 @@
1
/main
2
3
*.o

+ 3 - 0
rust/book/main.rs

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