flix / programming-flix

A tutorial for programming in Flix
Apache License 2.0
6 stars 13 forks source link

Include singleton enum on Tips and Tricks page #85

Closed ninaandrup closed 1 year ago

ninaandrup commented 2 years ago

Description from Magnus:

Just to say something like if you have an enum with a single case:

enum USD {
  case USD(Int32)
}

you can simplify it to enum USD(Int32) instead.

Something like that.

magnus-madsen commented 1 year ago

https://github.com/flix/book/issues/23