From 1bec1a7daa59760f59d56acb76508f5b1c4b9541 Mon Sep 17 00:00:00 2001 From: Daniel Alejandro Gallegos Date: Sat, 9 Sep 2023 14:15:19 -0400 Subject: [PATCH] initial commit --- README.md | 4 ++++ rust/README.md | 8 ++++++++ rust/hello.rs | 3 +++ rust/variables.rs | 0 4 files changed, 15 insertions(+) create mode 100644 README.md create mode 100644 rust/README.md create mode 100644 rust/hello.rs create mode 100644 rust/variables.rs 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