hwp/part1/hello_world.hs
Yann Esposito (Yogsototh) f465738908
progress
2018-04-28 11:01:20 +02:00

11 lines
227 B
Haskell
Executable file

#!/usr/bin/env stack
{- stack script
--resolver lts-11.6
--install-ghc
--package protolude
-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
import Protolude
main = putText "Hello, world!"