home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / bwbasic-2.10.sit / bwbasic-2.10 / bwbtest / deffn.bas < prev    next >
BASIC Source File  |  1993-11-09  |  240b  |  8 lines

  1. 10 REM ------------------------------------------ 
  2. 20 PRINT "DEFFN.BAS -- Test DEF FN Statement" 
  3. 30 DEF fnadd( x, y ) = x + y 
  4. 40 PRINT fnadd( 2, 3 ) 
  5. 50 DEF fnjoin$( a$, b$ ) = a$ + b$ 
  6. 60 PRINT fnjoin$( chr$( &h43 ), "orrect" ) 
  7. 70 END 
  8.