Call a function: Difference between revisions

Content added Content deleted
m (→‎{{header|Phix}}: added syntax colouring the hard way, phix/basics)
Line 1,524: Line 1,524:


<lang Dyalect>func foo(x, y, z) { }
<lang Dyalect>func foo(x, y, z) { }
foo(z = 3, x = 1, y = 2)</lang>
foo(z: 3, x: 1, y: 2)</lang>


Using a function in statement context:
Using a function in statement context: