Added C# support to compiler script (#858)

This commit is contained in:
Luke Bubar 2020-12-07 15:55:03 -05:00 committed by GitHub
parent b30ca735b6
commit f190ab32c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,6 +31,7 @@ case "$ext" in
[0-9]) preconv "$file" | refer -PS -e | groff -mandoc -T pdf > "$base".pdf ;;
c) cc "$file" -o "$base" && "$base" ;;
cpp) g++ "$file" -o "$base" && "$base" ;;
cs) mcs "$file" && mono "$base".exe ;;
go) go run "$file" ;;
h) sudo make install ;;
m) octave "$file" ;;