RosettaCodeData/Task/Sort-three-variables/AutoHotkey/sort-three-variables-2.ahk

13 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