7 lines
212 B
Text
7 lines
212 B
Text
x,y,z := "lions, tigers, and", "bears, oh my!", 0'|(from the "Wizard of OZ")|;
|
|
x,y,z = List(x,y,z).sort();
|
|
println(x," | ",y," | ",z);
|
|
|
|
x,y,z := 77444, -12, 0;
|
|
x,y,z = List(x,y,z).sort();
|
|
println(x," ",y," ",z);
|