Move hello stuff to hello/
This commit is contained in:
parent
5bd3729c97
commit
0115c6ba2a
2 changed files with 0 additions and 0 deletions
6
hello/Cargo.toml
Normal file
6
hello/Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "hello"
|
||||
version = "0.1.0"
|
||||
authors = ["Eryn Wells <eryn@erynwells.me>"]
|
||||
|
||||
[dependencies]
|
8
hello/src/main.rs
Normal file
8
hello/src/main.rs
Normal file
|
@ -0,0 +1,8 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
|
||||
let v = vec![1, 2, 3];
|
||||
for i in v {
|
||||
println!("{}", i);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue