Skip to content

v2.3.1

Compare
Choose a tag to compare
@odino odino released this 25 Aug 16:38
· 84 commits to master since this release

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.