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 >
Text File  |  1994-08-01  |  299b  |  19 lines

  1. {*
  2. ** A test of external function use.
  3. ** sub.c (compiled and assembled to produce sub.o)
  4. ** is used in conjunction with this:
  5. **
  6. ** bas -O func sub.o
  7. *}
  8.   
  9. deflng x,y,z
  10.  
  11. declare function subtract(x&,y&,z&) external
  12.  
  13. input "enter x: ",x
  14. input "enter y: ",y
  15. z=0
  16.  
  17. subtract(x,y,@z)
  18. print x;"-";y;"=";z
  19.