factor/basis/tools/deploy/test/6/6.factor

14 lines
205 B
Factor

IN: tools.deploy.test.6
USING: namespaces math kernel ;
SYMBOL: x
SYMBOL: y
: deploy-test-6 ( -- )
1 x set-global
2 y set-global
x get-global y get-global + 3 assert= ;
MAIN: deploy-test-6