gap filling - pannous/wasp GitHub Wiki
gap filling
Use local variables as missing arguments to functions
f y:= y*y+v
f(y=2,v=3) # 7
y=2,v=3;f() # 7
What is the point of providing arguments, when unbound external symbols are resolved anyways?
Use local variables as missing arguments to functions
f y:= y*y+v
f(y=2,v=3) # 7
y=2,v=3;f() # 7
What is the point of providing arguments, when unbound external symbols are resolved anyways?