Skip to content

Added createVars macro

Compare
Choose a tag to compare
@HugoGranstrom HugoGranstrom released this 30 Jul 13:10
· 47 commits to master since this release

You can now create many variables in a more convinient way using the createVars macro:

createVars(x, y, coolVar)

This is transformed to:

let x = newVariable("x")
let y = newVariable("y")
let coolVar = newVariable("coolVar")