File: Simple.hs

package info (click to toggle)
haskell-getopt-generics 0.13.1.0-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 260 kB
  • sloc: haskell: 1,644; makefile: 6
file content (9 lines) | stat: -rw-r--r-- 137 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
module Simple where

import WithCli

main :: IO ()
main = withCli run

run :: String -> Int -> Bool -> IO ()
run s i b = print (s, i, b)