From 8cf6663b143d7a2c290ffbcf9ef704556b61a853 Mon Sep 17 00:00:00 2001 From: Bryan Jenks Date: Sun, 7 Jun 2020 20:47:04 -0700 Subject: [PATCH] rust file compilation --- .local/bin/compiler | 1 + 1 file changed, 1 insertion(+) diff --git a/.local/bin/compiler b/.local/bin/compiler index 4f1ad505..58a809fa 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" ;;