Skip to main content
summaryrefslogtreecommitdiffstats
blob: c7fa1628b9cbeb76544306ce7a13cb0a2ead645f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
push 5
:thread_create
exec stack
dec 
dup
branch_not_zero thread_create
push finished
output 
halt
:stack
push 100
:inner
dup
output
dup
branch_not_zero descend
return
:descend
dec
call inner 
return

Back to the top