blob: 88b1355daf5b0538bfe273d97614cdbe1d5a8f97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#-h- elseif 155 local 12/01/80 15:53:51
# elseif - generate code for end of if before else
include defs
subroutine elseif (lab)
integer lab
call outgo (lab+1)
call indent (-1)
call outcon (lab)
call indent (1)
return
end
|