RosettaCodeData/Task/Sort-three-variables/Mathematica/sort-three-variables-2.math
2023-07-01 13:44:08 -04:00

5 lines
66 B
Text

x = 77444;
y = -12;
z = 0;
{x, y, z} = Sort[{x, y, z}];
{x, y, z}