aboutsummaryrefslogtreecommitdiffstats
path: root/tests/do-loop-nested.forth
blob: 00cf68a1b6299802b5dda2e341ec6866f22d5488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
INPUT
: timestables 5 1  do i 5 1 do dup i * .  loop loop drop ;
timestables
OUTPUT
1
2
3
4
2
4
6
8
3
6
9
12
4
8
12
16