Closed ninaandrup closed 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.
enum USD(Int32)
Something like that.
https://github.com/flix/book/issues/23
Description from Magnus:
Just to say something like if you have an enum with a single case:
you can simplify it to
enum USD(Int32)
instead.Something like that.