Last active
August 9, 2018 06:55
-
-
Save rayshih/7ba385836940c72fc847abdb3c8ce0cb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import Prelude | |
import Control.Monad.Eff.Console (log) | |
import TryPureScript (render, withConsole) | |
data Weekday = Monday | |
| Tuesday | |
| Wednesday | |
| Thursday | |
| Friday | |
printDay Monday = log "Monday" | |
printDay Tuesday = log "Tuesday" | |
printDay Wednesday = log "Wednesday" | |
printDay Thursday = log "Thursday" | |
printDay Friday = log "Friday" | |
main = render =<< withConsole do | |
printDay Monday |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment