10 lines
188 B
Text
10 lines
188 B
Text
|
|
# v0.6
|
||
|
|
|
||
|
|
a, b, c = "lions, tigers, and", "bears, oh my!", "(from the \"Wizard of OZ\")"
|
||
|
|
a, b, c = sort([a, b, c])
|
||
|
|
@show a b c
|
||
|
|
|
||
|
|
a, b, c = 77444, -12, 0
|
||
|
|
a, b, c = sort([a, b, c])
|
||
|
|
@show a b c
|