Added createVars macro
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")