abs icon indicating copy to clipboard operation
abs copied to clipboard

Ability to call a concurrent function like a goroutine: fn.go(args)

Open gustavosbarreto opened this issue 3 years ago • 0 comments

go calls a function with the arguments passed:

multiplier = f(x, y) { x * y }
multiplier.go([10, 2]) # 20

gustavosbarreto avatar May 31 '22 14:05 gustavosbarreto