From b1d1446325fe483be0078c8932f5eb99fd98ea2b Mon Sep 17 00:00:00 2001 From: Bryan Jenks Date: Mon, 8 Jun 2020 02:51:13 -0700 Subject: [PATCH] rust file compilation (#698) --- .local/bin/compiler | 1 + 1 file changed, 1 insertion(+) 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" ;;