1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-16 22:14:23 +03:00
inform7/services/kinds-test/Tests/Test Cases/promotion.txt

35 lines
385 B
Plaintext

N = number.
R = real number.
N + N.
N + R.
R + N.
R + R.
N - N.
N - R.
R - N.
R - R.
N * N.
N * R.
R * N.
R * R.
N over N.
N over R.
R over N.
R over R.
N % N.
N % R.
R % N.
R % R.
N to the nearest N.
N to the nearest R.
R to the nearest N.
R to the nearest R.
- N.
- R.
square root of N.
square root of R.
real square root of N.
real square root of R.
cube root of N.
cube root of R.