You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement operations on the Number program type. Depends on #4.
Includes:
Basic arithmetic operations.
Basic comparison operations, for which false is the empty string and true is the original value. For example, < {3} {2} (2 less than 3) would become {2}, and < {3} {4} would become {}.
If possible, the number data type should be expanded such that it retains the entire computation that generates it, and optimizes operations on the computation itself (such as operations cancelling out), until written or converted, at which point the computation is executed to the specified number of significant figures.
The text was updated successfully, but these errors were encountered:
Implement operations on the Number program type. Depends on #4.
Includes:
< {3} {2}
(2 less than 3) would become{2}
, and< {3} {4}
would become{}
.If possible, the number data type should be expanded such that it retains the entire computation that generates it, and optimizes operations on the computation itself (such as operations cancelling out), until written or converted, at which point the computation is executed to the specified number of significant figures.
The text was updated successfully, but these errors were encountered: