Initial commit

master
Stan Drozd 2019-02-14 11:11:09 +01:00
commit 584d38761a
No known key found for this signature in database
GPG Key ID: EB6D6A3C40C7521D
3 changed files with 12 additions and 0 deletions

2
.gitignore vendored Normal file
View File

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

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "hsck"
version = "0.1.0"
authors = ["Stan Drozd <drozdziak1@gmail.com>"]
edition = "2018"
[dependencies]

3
src/main.rs Normal file
View File

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