From 69a6531bb9f7a89fbed80c3b3c899358a1a8ab9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=C4=9Fit=20Sever?= Date: Tue, 15 Jan 2019 04:14:34 +0300 Subject: [PATCH] Introduce runhaskell Option (#32487) As an alternative to compiling and running the executable. --- guide/english/haskell/index.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/guide/english/haskell/index.md b/guide/english/haskell/index.md index d7ecb8964f..cf09e9925c 100644 --- a/guide/english/haskell/index.md +++ b/guide/english/haskell/index.md @@ -55,6 +55,12 @@ stack ghc hello.hs ./hello ``` +Alternatively, you can use `runhaskell` to skip the compiling step. + +```shell +stack runhaskell hello.hs +``` + ## Documentation Hackage provides documentation for Haskell