home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional
/
OS2PRO194.ISO
/
os2
/
prgramer
/
adaptor
/
examples
/
dalib
/
hostnode
/
test2.f
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-03-23
|
328 b
|
20 lines
program test2
real a(5,5), ha(5,5)
cmf$ layout ha(:host)
ha = 4.0
c move ha to nodes
a = ha
a = a + 1.0
c move from nodes to host
ha = a
c
c print results
do i = 1, 5
print '(5f10.5)', ha(i,:)
end do
c
print * , 'results should all be 5 '
end