blob: 4bf20e4095fd0134a3e5f7888f232f9c5b32349d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
integer function length (str)
integer str (100)
length = 0
23000 if (.not.(str (length+1) .ne. -2))goto 23002
23001 length = length + 1
goto 23000
23002 continue
return
end
|