variables :3

This commit is contained in:
Emily 2020-07-08 15:19:14 +10:00
parent cc3f76fc67
commit c073ab0d91
3 changed files with 22 additions and 0 deletions

10
variables/.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
# will have compiled files and executables
debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

9
variables/Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "variables"
version = "0.1.0"
authors = ["Emily J. <me@emily.im>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
variables/src/main.rs Normal file
View File

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