home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / ace_basic / ace / prgs / externfunc / func2.b < prev    next >
Text File  |  1977-12-31  |  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.