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/dimensions.txt

46 lines
434 B
Plaintext

new unit length.
new unit mass.
new unit area.
new unit pressure.
N = number.
T = text.
L = length.
M = mass.
X = area.
P = pressure.
N + T.
T + T.
L + L.
L - L.
L * L.
L over L.
L % L.
L to the nearest L.
L + N.
L - N.
L * N.
L over N.
L % N.
L to the nearest N.
N + L.
N - L.
N * L.
N over L.
N % L.
N to the nearest L.
L + M.
L * M.
M * M.
L * L.
length * length = area.
L * L.
pressure * area = mass.
P * X.
X * P.
M over X.