Examples (5)
Start a REPL (interactive shell)
Start a REPL and load the specified Haskell source file
ghci source_file.hsStart a REPL and enable a language option
ghci -Xlanguage_optionStart a REPL and enable some level of compiler warnings (e.g. `all` or `compact`)
ghci -Wwarning_levelStart a REPL with a colon-separated list of directories for finding source files
ghci -ipath/to/directory1:path/to/directory2:...made by @shridhargupta | data from tldr-pages