rust book again

This commit is contained in:
Dan Buch 2020-11-26 14:22:30 -05:00
parent 2c3b08521c
commit 1ac761fa8d
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7
2 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@
/arduino/arduino.mk
/arduino/libraries/*
/arduino/libraries/.raw/
/hello_world/main
/oldstuff/intro-to-crafty/assets/*
/oldstuff/intro-to-crafty/lib/crafty.js
/oldstuff/intro-to-crafty/tmp/*

3
hello_world/main.rs Normal file
View File

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