
coffee
List of commands for coffee:
-
coffee:tldr:7a11f coffee: Run a script.$ coffee ${filename-coffee}try on your machineexplain this command
-
coffee:tldr:826f7 coffee: Compile to JavaScript and save to a file with the same name.$ coffee --compile ${filename-coffee}try on your machineexplain this command
-
coffee:tldr:888d6 coffee: Watch script for changes and re-run script.$ coffee --watch ${filename-coffee}try on your machineexplain this command
-
coffee:tldr:94168 coffee: Start a REPL (interactive shell).$ coffee --interactivetry on your machineexplain this command
-
coffee:tldr:d04f7 coffee: Compile to JavaScript and save to a given output file.$ coffee --compile ${filename-coffee} --output ${filename-js}try on your machineexplain this command