diff options
| author | Luke Bubar <43391582+lukerb52@users.noreply.github.com> | 2020-12-07 15:55:03 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-07 15:55:03 -0500 |
| commit | f190ab32c39a9471954078f8c387bc3ffc7cfddd (patch) | |
| tree | d61ae26eb296c4bdc53356905c37f100bec680ae | |
| parent | b30ca735b60e5df2c30ab4eb7a6fe0eb0e7ecab7 (diff) | |
| download | eibhear-f190ab32c39a9471954078f8c387bc3ffc7cfddd.tar.gz eibhear-f190ab32c39a9471954078f8c387bc3ffc7cfddd.tar.zst eibhear-f190ab32c39a9471954078f8c387bc3ffc7cfddd.zip | |
Added C# support to compiler script (#858)
| -rwxr-xr-x | .local/bin/compiler | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.local/bin/compiler b/.local/bin/compiler index 3c2d204..0d0ce87 100755 --- a/.local/bin/compiler +++ b/.local/bin/compiler @@ -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" ;; |
