diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..b761891 --- /dev/null +++ b/Justfile @@ -0,0 +1,12 @@ +default: + @just --list + +build-rust: + cd rust && cargo build + +run-godot: + cd learning-rust4.4 && ~/Software/Godot_v4.4-stable_linux.x86_64 . + +run: + @just build-rust + @just run-godot