did hello world and guessing game.

This commit is contained in:
gabe 2022-06-18 14:17:53 -05:00
parent ced09c06a9
commit 4106843d70
6 changed files with 58 additions and 0 deletions

View file

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

View file

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