
ghc
List of commands for ghc:
-
ghc:tldr:0ac5e ghc: Compile using extra optimization.$ ghc -O ${file-hs}try on your machineexplain this command
-
ghc:tldr:2e6b6 ghc: Find and compile all modules in the current directory.$ ghc Maintry on your machineexplain this command
-
ghc:tldr:44d95 ghc: Compile a single file.$ ghc ${file-hs}try on your machineexplain this command
-
ghc:tldr:b645d ghc: Stop compilation after generating object files (.o).$ ghc -c ${file-hs}try on your machineexplain this command
-
ghc:tldr:d223c ghc: Evaluate a single expression.$ ghc -e ${expression}try on your machineexplain this command
-
ghc:tldr:ef70b ghc: Start a REPL (interactive shell).$ ghcitry on your machineexplain this command