home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 91 / af091a.adf / af91a3.lzx / prgs / ExternFunc / func2.b < prev    next >
Text File  |  2019-03-25  |  278b  |  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.