initial commit

This commit is contained in:
Daniel Gallegos 2023-09-09 14:15:19 -04:00
commit 1bec1a7daa
No known key found for this signature in database
GPG key ID: 5A09E616957C4F12
4 changed files with 15 additions and 0 deletions

4
README.md Normal file
View file

@ -0,0 +1,4 @@
# taco's coding sandbox
welcome to my little script sandbox. i usually work on stuff here before i formalize it into a real package or its own repository. so this is like the pre-alpha location for stuff. nothing here is guaranteed to work or have proper documentation. good luck!

8
rust/README.md Normal file
View file

@ -0,0 +1,8 @@
# crustacean station
## learning rust
i'm following [this](https://www.youtube.com/watch?v=BpPEoZW5IiY) guide by freecodecamp on rust, most of the files in here are me following along.
* [hello.rs](hello.rs)
*

3
rust/hello.rs Normal file
View file

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

0
rust/variables.rs Normal file
View file