New links in Readme.md, New concepts (Types)

This commit is contained in:
SocioCyber
2026-04-15 23:34:55 -07:00
parent faac2285f2
commit 184c515760
5 changed files with 618 additions and 2 deletions

View File

@@ -34,4 +34,15 @@ path = "src/clone.rs" # path to the source file
[[bin]]
name = "StackVSHeap" # the name youll use with --bin
path = "src/stack_vs_heap.rs" # path to the source file
# cargo run --bin StackVSHeap
# cargo run --bin StackVSHeap
[[bin]]
name = "Struct" # the name youll use with --bin
path = "src/struct.rs" # path to the source file
# cargo run --bin Struct
[[bin]]
name = "Enum" # the name youll use with --bin
path = "src/enum.rs" # path to the source file
# cargo run --bin Enum