home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / basic / ace / prgs / externfunc / func2.b < prev    next >
Encoding:
Text File  |  1994-07-31  |  278 b   |  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. declare function subtract%(x%,y%) external
  12.  
  13. input "enter x: ",x
  14. input "enter y: ",y
  15.  
  16. print x;"-";y;"=";subtract(x,y)
  17.