-
-
Notifications
You must be signed in to change notification settings - Fork 4
gap filling
pannous edited this page Nov 14, 2020
·
3 revisions
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?