initial commit

This commit is contained in:
Aleksandrov Vladimir 2019-04-13 16:10:37 +03:00
commit 8681d2a8af
No known key found for this signature in database
GPG Key ID: CF84A9185F9615AE
3 changed files with 15 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
/.idea/
/project/project
/project/target
/target/
/Cargo.lock

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "hackaton_13-04-19"
version = "0.1.0"
authors = ["Aleksandrov Vladimir <invis87@gmail.com>"]
edition = "2018"
[dependencies]

3
src/main.rs Normal file
View File

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