mumu 0.11.1

Lava Mumu is a language for those in the now and that know
Documentation
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))