Added rust to practice
This commit is contained in:
1
rust/hello_world/.gitignore
vendored
Normal file
1
rust/hello_world/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
target
|
4
rust/hello_world/Cargo.lock
generated
Normal file
4
rust/hello_world/Cargo.lock
generated
Normal file
@@ -0,0 +1,4 @@
|
||||
[root]
|
||||
name = "hello_world"
|
||||
version = "0.0.1"
|
||||
|
5
rust/hello_world/Cargo.toml
Normal file
5
rust/hello_world/Cargo.toml
Normal file
@@ -0,0 +1,5 @@
|
||||
[package]
|
||||
|
||||
name = "hello_world"
|
||||
version = "0.0.1"
|
||||
authors = [ "Logen Kain <logen@sudotask.com>" ]
|
3
rust/hello_world/src/main.rs
Normal file
3
rust/hello_world/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Reference in New Issue
Block a user