Browse Source

Initial commit

master
garritfra 4 years ago
commit
729d578065
  1. 2
      .gitignore
  2. 6
      Cargo.lock
  3. 9
      Cargo.toml
  4. 3
      src/main.rs

2
.gitignore vendored

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

6
Cargo.lock generated

@ -0,0 +1,6 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "rustfuck"
version = "0.1.0"

9
Cargo.toml

@ -0,0 +1,9 @@
[package]
name = "rustfuck"
version = "0.1.0"
authors = ["garritfra <garritfranke@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
src/main.rs

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