Skip to content

Commit 6031064

Browse files
Initial structs
1 parent 5504f07 commit 6031064

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

rustlang_book/structs/Cargo.toml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "structs"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]

rustlang_book/structs/src/main.rs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
fn main() {
3+
println!("Hello, world!");
4+
}

0 commit comments

Comments
 (0)