You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module Main exposing (main)
import Html exposing (text)
import Parser
main =
case Parser.run Parser.getIndent "" of
Ok indent ->
text (String.fromInt indent)
Err err ->
text "something atrocious"
getIndent
has a default of1
as opposed to0
as mentioned in the docs.https://ellie-app.com/3Z2FRkCJP8Ba1
(I've been having such a ball writing a parser, thank you so much for this package)
The text was updated successfully, but these errors were encountered: