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

14 lines
205 B
Factor
Raw Normal View History

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