Added rust to practice

This commit is contained in:
2017-03-29 12:42:23 -07:00
parent 3c3a83f482
commit 53bf1e4edf
22 changed files with 168 additions and 0 deletions

1
rust/fuck_test/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
target

4
rust/fuck_test/Cargo.lock generated Normal file
View File

@@ -0,0 +1,4 @@
[root]
name = "fuck_test"
version = "0.1.0"

View File

@@ -0,0 +1,6 @@
[package]
name = "fuck_test"
version = "0.1.0"
authors = ["Logen Kain <logen@sudotask.com>"]
[dependencies]

View File

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