Chapter 0103 done

This commit is contained in:
Xavier Brinon
2024-02-11 17:20:22 +00:00
parent 27287dead0
commit 1492157392
3 changed files with 132 additions and 7 deletions

View File

@ -0,0 +1,13 @@
[package]
name = "hello_cargo"
version = "0.1.0"
edition = "2021"
authors = ["HaQadosch Berraka <haqadosch+rust@pm.me>"]
description = "displays hello world"
documentation = "./docs/ref.org"
readme = "./docs/readme.org"
# 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!");
}