Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
6
Task/Named-parameters/Dyalect/named-parameters.dyalect
Normal file
6
Task/Named-parameters/Dyalect/named-parameters.dyalect
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
func fun(x, y = 0, z = 12.2, dsc = "Useless text") {
|
||||
print("x=\(x), y=\(y), z=\(z), dsc=\(dsc)")
|
||||
}
|
||||
|
||||
fun(12, z: 24.4, dsc: "Foo", y: 3)
|
||||
fun(y: 42, x: 12)
|
||||
Loading…
Add table
Add a link
Reference in a new issue