Initial commit for rupsc

This commit is contained in:
Aram 🍐 2021-07-30 12:20:29 -04:00
parent 43121ce2ea
commit 80ceb6f1df
3 changed files with 13 additions and 1 deletions

8
rupsc/Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "rupsc"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
rupsc/src/main.rs Normal file
View file

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