github abs-lang/abs 2.3.1
v2.3.1

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

A fresh bugfix for ABS!

#402 fixes a nasty bug with silent returns (return statements without a value, which default to NULL).

The PR fixes them and adds some more sophisticated tests. A return without a value, when interpreted before this PR, would terminate the script without executing the rest of the code.

This snippet:

if false {
	return
}
return 3

would return NULL instead of 3.

Don't miss a new abs release

NewReleases is sending notifications on new releases.