home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMIGA PD 1
/
AMIGA-PD-1.iso
/
Programme_zum_Heft
/
Programmieren
/
Kurztests
/
ACE
/
Prgs
/
ExternFunc
/
func.b
next >
Wrap
Text File
|
1994-08-01
|
299b
|
19 lines
{*
** A test of external function use.
** sub.c (compiled and assembled to produce sub.o)
** is used in conjunction with this:
**
** bas -O func sub.o
*}
deflng x,y,z
declare function subtract(x&,y&,z&) external
input "enter x: ",x
input "enter y: ",y
z=0
subtract(x,y,@z)
print x;"-";y;"=";z