Browse Source

Initial commit

master
Luke Childs 8 years ago
commit
a18ed544e3
  1. 1
      .gitignore
  2. 6
      Cargo.toml
  3. 3
      src/main.rs

1
.gitignore

@ -0,0 +1 @@
target

6
Cargo.toml

@ -0,0 +1,6 @@
[package]
name = "trim"
version = "0.1.0"
authors = ["Luke Childs <lukechilds123@gmail.com>"]
[dependencies]

3
src/main.rs

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