This commit is contained in:
e2hang
2025-09-12 23:52:56 +08:00
parent 754029b8d5
commit c1881ec221
16 changed files with 2226 additions and 0 deletions

2086
BasicSyntax/get-dependencies/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,8 @@
[package]
name = "get-dependencies"
version = "0.1.0"
edition = "2024"
[dependencies]
rand = "0.8.5"
trpl = "0.2.0"

View File

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