Skip to content

Commit

Permalink
Fix COBOL run command
Browse files Browse the repository at this point in the history
  • Loading branch information
rightfold committed May 19, 2018
1 parent d283b0f commit 01e1a9b
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 01e1a9b

Please sign in to comment.