6 lines
224 B
Text
6 lines
224 B
Text
test = function (one, two, three = '', four = '', five = '')
|
|
{
|
|
Print('one: ' $ one $ ', two: ' $ two $ ', three: ' $ three $
|
|
', four: ' $ four $ ', five: ' $ five)
|
|
}
|
|
test('1', '2', five: '5', three: '3')
|