RosettaCodeData/Task/Optional-parameters/Zkl/optional-parameters.zkl
2017-09-25 22:28:19 +02:00

8 lines
247 B
Text

const lex="L";
fcn mystrySort(table,ordering=lex,column=0,reverse=False,other){
vm.arglist.println();
}
mystrySort.prototype.println();
mystrySort("table");
mystrySort("table",lex,1);
mystrySort("table",lex,1,True,D("row",35,"type","foobar"));