I'm trying to use the Basics.toString
function:
type Foo = Bar | Baz
main = text (toString Bar)
which, according to the Basics documentation, should be imported by default, but I'm getting a compile error:
I cannot find a `toString` variable:
13| main = text (toString Bar)
What am I missing?