bughelp wanted
Description
First off, awesome work on this project! It really looks great.
I am running a modified version of the squareNumbers example (I have tried this on the original code as well):
const monkey = WebMonkeys()
monkey.set('res', [1, 2, 3, 4, 5])
monkey.work(5, 'res(i) := res(i) * res(i);')
console.log(monkey.get('res'))
But the final output seems to be the original 'res' array instead of the squares.
This happens with all of the examples. None of the 'set' statements seem to work for me.