Skip to content

Commit

Permalink
Merge pull request #33 from rightfold/patch-1
Browse files Browse the repository at this point in the history
Fix COBOL run command
  • Loading branch information
prasmussen authored May 19, 2018
2 parents d283b0f + 01e1a9b commit 520be0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/Language.hs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ languageRunCmdExample Ats = "make"
languageRunCmdExample Bash = "bash main.sh"
languageRunCmdExample C = "clang main.c && ./a.out"
languageRunCmdExample Clojure = "java -cp /usr/share/java/clojure.jar clojure.main main.clj"
languageRunCmdExample Cobol = "cob -x -o a.out main.cob && ./a.out"
languageRunCmdExample Cobol = "cobc -x -o a.out main.cob && ./a.out"
languageRunCmdExample Coffeescript = "coffee main.coffee"
languageRunCmdExample Cpp = "clang++ main.cpp && ./a.out"
languageRunCmdExample Crystal = "crystal run main.cr"
Expand Down

0 comments on commit 520be0a

Please sign in to comment.