From f967a2d8a1a8f8060090e105ba7eae877f5decdc Mon Sep 17 00:00:00 2001 From: Elmar Kresse Date: Fri, 4 Jul 2025 22:37:21 +0200 Subject: [PATCH] add initial README.md with project setup instructions --- readme.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..3724286 --- /dev/null +++ b/readme.md @@ -0,0 +1,19 @@ +# Rust Visual Project 🦀 + +Install Rust with cargo to execute the programm. + +```bash +cargo run +``` + +To clean the project, use: + +```bash +cargo clean +``` + +Build the executable with: + +```bash +cargo build +``` \ No newline at end of file