From 5ef22135cb647381eff648045a70006e815b98c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=C4=9Fit=20Sever?= Date: Tue, 15 Jan 2019 04:03:15 +0300 Subject: [PATCH] Remove Repetition (#32485) --- guide/english/haskell/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/haskell/index.md b/guide/english/haskell/index.md index 48c169f92d..d7ecb8964f 100644 --- a/guide/english/haskell/index.md +++ b/guide/english/haskell/index.md @@ -47,9 +47,9 @@ The last type value is the return value, in the case above it takes a single int main :: IO () main = print "Hello Haskell :)" ``` -Save above code in a file named "hello.hs" and save. +Save the code above in a file named "hello.hs". -To compile the Hello World example, this will convert our haskell code to machine understandable bytecodes. +You can use ghc to convert our haskell code to machine understandable bytecodes. ```shell stack ghc hello.hs ./hello