]> gitweb.factorcode.org Git - factor.git/blob - basis/tools/deploy/test/6/6.factor
da64bb646c20003624e37d0773b90d78f51de8ad
[factor.git] / basis / tools / deploy / test / 6 / 6.factor
1 IN: tools.deploy.test.6
2 USING: values math kernel ;
3
4 VALUE: x
5
6 VALUE: y
7
8 : deploy-test-6 ( -- )
9     1 to: x
10     2 to: y
11     x y + 3 assert= ;
12
13 MAIN: deploy-test-6