Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| port module Stdin exposing (Event(..), subscriptions) | |
| port onStdinLine : (String -> msg) -> Sub msg | |
| port onStdinClosed : (() -> msg) -> Sub msg | |
| type Event | |
| = Line String | |
| | Closed | |
| subscriptions : Sub Event | |
| subscriptions = | |
| Sub.batch | |
| [ onStdinLine Line | |
| , onStdinClosed (\() -> Closed) | |
| ] |