commit 1bec1a7daa59760f59d56acb76508f5b1c4b9541 Author: Daniel Alejandro Gallegos Date: Sat Sep 9 14:15:19 2023 -0400 initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..03c0243 --- /dev/null +++ b/README.md @@ -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! + diff --git a/rust/README.md b/rust/README.md new file mode 100644 index 0000000..bdcd20d --- /dev/null +++ b/rust/README.md @@ -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) +* \ No newline at end of file diff --git a/rust/hello.rs b/rust/hello.rs new file mode 100644 index 0000000..646fa5e --- /dev/null +++ b/rust/hello.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello world!"); +} \ No newline at end of file diff --git a/rust/variables.rs b/rust/variables.rs new file mode 100644 index 0000000..e69de29