Relation:compile

Returns the compiled RPN code for an expression

Description

compile expression

Parameters


expression: any valid expression

Examples

example result
compile 5+4 5 4 :add
compile (8 + c) * b 8 c :add b :mul
compile director == "Godard" and year < 2015 director $Godard :eqs 66294 :andleft year 2015 :ltn :andright #66294

Comments


Compile is an utility instruction to help debug expressions.

See also

Expressions assert