summaryrefslogtreecommitdiffstats
path: root/samples/variables.sample
blob: 8902b04708d0890d9be7cfa7e27b05677a50a4cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- store foo = 10
10 $foo !

-- load and print foo
$foo ?

-- print 1 + value at foo
1 $foo @ + .

-- define x * 2 = x + x
define *2       dup + ;

666 *2 .