blob: 0c21d76e30366de483c24759302a5b692f0ebfcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
function foo ()
foo = 4
foo = foo / 2
return
entry bar ()
bar = 9
bar = bar / 3
end
program entrytest
if (foo () .ne. 2) call abort ()
if (bar () .ne. 3) call abort ()
end
|