Skip to content

Instantly share code, notes, and snippets.

@minsu
Last active January 1, 2019 01:42
Show Gist options
  • Select an option

  • Save minsu/ef3b91a652ae07a74d5853ab04729927 to your computer and use it in GitHub Desktop.

Select an option

Save minsu/ef3b91a652ae07a74d5853ab04729927 to your computer and use it in GitHub Desktop.
Haskell Shell Script
#! /usr/bin/env stack
-- stack --resolver lts-7.24 --install-ghc runghc
main = do
putStrLn "Please enter your birth year"
year <- getLine
putStrLn $ "In 2020, you will be: " ++ show (2020 - read year)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment