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 / func2.b < prev    next >
Text File  |  1994-01-16  |  263b  |  17 lines

  1. {*
  2. ** A test of external function use.
  3. ** sub2.s (assembled to produce sub2.o) 
  4. ** is used in conjunction with this:
  5. **
  6. ** bas -O func2 sub2.o
  7. *}
  8.   
  9. defint x,y
  10.  
  11. external function subtract%
  12.  
  13. input "enter x: ",x
  14. input "enter y: ",y
  15.  
  16. print x;"-";y;"=";subtract(x,y)
  17.