diff --git a/.local/bin/compiler b/.local/bin/compiler index 4f1ad50..58a809f 100755 --- a/.local/bin/compiler +++ b/.local/bin/compiler @@ -42,6 +42,7 @@ case "$ext" in h) sudo make install ;; c) cc "$file" -o "$base" && "$base" ;; py) python "$file" ;; + rs) cargo build ;; m) octave "$file" ;; scad) openscad -o "$base".stl "$file" ;; go) go run "$file" ;;