abs-lang / abs

Home of the ABS programming language: the joy of shell scripting.
https://www.abs-lang.org
MIT License
516 stars 35 forks source link

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

Open gustavosbarreto opened 2 years ago

gustavosbarreto commented 2 years ago

go calls a function with the arguments passed:

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