1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-12-22 17:44:22 +00:00

Run cargo init

This commit is contained in:
Steffo 2022-07-31 07:12:50 +02:00
parent dcb3cdc212
commit f37096cba6
Signed by: steffo
GPG key ID: 6965406171929D01
2 changed files with 11 additions and 0 deletions

8
Cargo.toml Normal file
View file

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

3
src/main.rs Normal file
View file

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