commit 5ffe814e0ee67eede871c38eebb2395b0f437055 Author: Alvin <524715@vistacollege.nl> Date: Wed Sep 10 12:45:59 2025 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..869df07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..40b399a --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "trallalelo_lang" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/README.md b/README.md new file mode 100644 index 0000000..28210bc --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Trallalelo Lang + +Benvenuto! Welcome to Trallalelo Lang, the most whimsical and brain-tickling programming language inspired by the finest Italian-flavored brainrot. + +## Documentation + +(Coming soon) + +## Ciao! diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}