9 lines
188 B
Julia
9 lines
188 B
Julia
# 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
|