home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d9xx / d969 / ace.lha / ACE / ACE-2.0.lha / PRGS.lha / ExternFunc / func.b next >
Text File  |  1994-01-16  |  281b  |  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. external function subtract
  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.