home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
fchek284.zip
/
test
/
comclash.f
< prev
next >
Wrap
Text File
|
1994-11-06
|
236b
|
19 lines
common /abc/ x,y,z
abc = 5
x = abc
end
subroutine sub1
common /abc/ x,y,z
real abc(5)
x = abc(1)
call sub2(x,y)
call sub2(1.0,2)
end
subroutine sub2(a,b)
common /abc/ x,i,z
x = abc(1)
end
function abc(n)
abc = n*n
end