riff-lang / riff

The Riff programming language
https://riff.cx
BSD Zero Clause License
23 stars 1 forks source link

`unless` statements #41

Open darrylabbate opened 1 year ago

darrylabbate commented 1 year ago

I.e. inverse of if

unless <expr> {
    // Control transfers if expr is false
}

Note that Perl, for example, supports unless...elsif...else