github abs-lang/abs 1.4.1
v1.4.1

latest releases: 2.6.0, 2.5.2, 2.5.1...
4 years ago

This is a bugfix release that fixes the ability to negate membership expressions if !(1 in [2,3,4]) {...} through #240.

This bug has affected ABS since membership testing was introduced. Workaround for previous versions:

if 1 in [] {

} else {
  // execute your code here
}

While from 1.4.1 you can:

if !(1 in []) {
  // execute your code
}

Don't miss a new abs release

NewReleases is sending notifications on new releases.