aripiprazole / ekko

📘 | Writing Haskell in Kotlin article's project
https://whik.devgabi.me
The Unlicense
7 stars 0 forks source link

enums #17

Open aripiprazole opened 2 years ago

aripiprazole commented 2 years ago

Implement algebraic data types, like data in Haskell.


type Maybe a = 
  | Just a
  | Nothing