Uniform function call syntax: Difference between revisions

Content deleted Content added
m See also: Capitalization
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags
Line 8:
== Examples ==
=== D programming language ===
<sourcesyntaxhighlight lang="D">
import std.stdio;
 
Line 37:
int[] e = a.addone().addone();
}
</syntaxhighlight>
</source>
 
=== Nim programming language ===
<sourcesyntaxhighlight lang="Nim">
type Vector = tuple[x, y: int]
Line 53:
v4 = v1.add(v2)
v5 = v1.add(v2).add(v1)
</syntaxhighlight>
</source>
 
== Rust usage of the term ==