1 2 3 4 5 6 7
// This is to demostrate that we can return an array after operation // without the parser brekaing to_array_add = (x, y) => { a = x + y [x,y,a] } slog(to_array_add(1,5))