/ (dividend divisor -- quotient)dividend: Numeric value being divided.divisor: Numeric value dividing the dividend to produce the quotient.quotient: Quotient value./ computes numeric division. Both inputs are dereferenced, must be non-NIL, and must have the same numeric schema.
0, the builtin is invalid.1 and the dividend is unknown, the result stays unknown even though its value matches the dividend. Only the schema is preserved explicitly.{} () {} [
"-- int32 --" printCompilerMessage
8 2 / printStack _:;
7 2 / printStack _:;
-7 2 / printStack _:;
"-- nat32 --" printCompilerMessage
7n32 2n32 / printStack _:;
"-- real32 --" printCompilerMessage
7.5r32 2.5r32 / printStack _:;
"-- unknown int32 --" printCompilerMessage
value: 0 dynamic;
value 2 / printStack _:;
] "main" exportFunction
-- int32 --
4
3
-3
-- nat32 --
3n32
-- real32 --
3.0r32
-- unknown int32 --
Int32