File: example.pda

package info (click to toggle)
eclipse-platform-debug 4.26-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 17,608 kB
  • sloc: java: 152,715; xml: 5,186; makefile: 5
file content (35 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
push "hello"
output
call foobar
push 3
:label
dup
push 4
push 5
add
add
output
dec
dup
branch_not_zero label
call foobar
push "end"
output
halt
:foobar
var a
var b
call barfoo
push "first"
push "second"
pop $a
pop $b
push $a
push $b
output
output
return
:barfoo
push "barfoo"
output
return