RosettaCodeData/Task/Sort-three-variables/Mathematica/sort-three-variables-2.math

6 lines
66 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
x = 77444;
y = -12;
z = 0;
{x, y, z} = Sort[{x, y, z}];
{x, y, z}