12 lines
217 B
AutoHotkey
12 lines
217 B
AutoHotkey
x = lions, tigers, and
|
|
y = bears, oh my!
|
|
z = (from the "Wizard of OZ")
|
|
SortThreeVariables(x,y,z)
|
|
MsgBox % x "`n" y "`n" z
|
|
|
|
x = 77444
|
|
y = -12
|
|
z = 0
|
|
SortThreeVariables(x,y,z)
|
|
MsgBox % x "`n" y "`n" z
|
|
return
|