first commit, nyan~

This commit is contained in:
Aodhnait Étaín 2021-05-22 21:34:55 +01:00
commit 37f58e24ac
3 changed files with 15 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
/Cargo.lock

10
Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
cargo-features = ["edition2021"]
[package]
name = "pine"
version = "0.1.0"
edition = "2021"
resolver = "2"
[profile.dev]
debug = false

3
src/main.rs Normal file
View File

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