We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1bf5156 + b5e0393 commit dd554f5Copy full SHA for dd554f5
src/main/Main.hs
@@ -257,11 +257,21 @@ main = withInterpreterArgs stackProgName $ \args isInterpreter -> do
257
cmdFooter
258
ghciCmd
259
ghciOptsParser
260
+ addCommand "repl"
261
+ "Run ghci in the context of package(s) (experimental) (alias for 'ghci')"
262
+ cmdFooter
263
+ ghciCmd
264
+ ghciOptsParser
265
addCommand "runghc"
266
"Run runghc"
267
268
execCmd
269
(execOptsParser $ Just ExecRunGhc)
270
+ addCommand "runhaskell"
271
+ "Run runghc (alias for 'runghc')"
272
273
+ execCmd
274
+ (execOptsParser $ Just ExecRunGhc)
275
addCommand "eval"
276
"Evaluate some haskell code inline. Shortcut for 'stack exec ghc -- -e CODE'"
277
0 commit comments