Browse Source

🎉 Initial commit

master
n0m1s 7 years ago
commit
285e51c380
3 changed files with 11 additions and 0 deletions
  1. +2
    -0
      .gitignore
  2. +6
    -0
      Cargo.toml
  3. +3
    -0
      src/main.rs

+ 2
- 0
.gitignore View File

@ -0,0 +1,2 @@
/target
**/*.rs.bk

+ 6
- 0
Cargo.toml View File

@ -0,0 +1,6 @@
[package]
name = "gitmoji-rust"
version = "0.1.0"
authors = ["n0m1s <git@homnomnom.fr>"]
[dependencies]

+ 3
- 0
src/main.rs View File

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

Loading…
Cancel
Save