Sayed's Blog

Minerva

A statically typed programming language focusing on better control flow structures

Inspired by "Goto Considered Harmful", the aim of Minerva is to replace control flow constructs that seem "GoToish" with constructs that better capture what developers are intending. For example:

while (!done) {   
 // do stuff
}

// can be replaced by:

until (done) {
  // do stuff
}

Kotlin

Subscribe to my blog



© 2023