Uniform function call syntax: Difference between revisions

Content deleted Content added
No edit summary
Fix comment and improve example
Line 14:
v2 = (x: 5, y: -2)
# all the following are correct and equivalent
v3 = add(v1, v2)
v4 = v1.add(v2)
v5 = v1.add(v2).add(v1v4)
</syntaxhighlight>