Closed stigkj closed 3 years ago
The Elm page has this example:
val result = Err(500) if (result is Error) { println("Result is not ok") }
I guess it should be
... if (result is Err) { ...
Good catch! Fixed, thanks.
The Elm page has this example:
I guess it should be