initial commit

pull/1/head
kirbylife 2019-11-12 19:57:32 -06:00
commit d67ca418d4
3 changed files with 12 additions and 0 deletions

2
.gitignore vendored 100644
View File

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

7
Cargo.toml 100644
View File

@ -0,0 +1,7 @@
[package]
name = "codigocomentado"
version = "0.1.0"
authors = ["kirbylife <gabriel13m@gmail.com>"]
edition = "2018"
[dependencies]

3
src/main.rs 100644
View File

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