v0.2.0-alpha

New Features

Tagged Unions

Hit the button below to read the documentation regarding tagged unions

πŸš₯Tagged Unions

Pattern Matching

Hit the button below to read the documentation regarding pattern matching

🎚️Pattern Matching

Modifications

New Syntax

In the previous version of the language, the type would always come before the name. For example:

// Old Syntax - <type> <name>
fun getGreeting(String fullName)

in this new version, this aspect been reversed: the type will now always come after the name, seperated by a colon:

// New Syntax - <name>: <type>
fun getGreeting(fullName: String)

New Pipe Operator

The pipe operator has been changed from => to |>.

Discord and GitHub

Experince issues, or want to get involved? Please join the Discord server and/or create an issue on the GitHub page. Links can be found here.

Last updated