home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume2 / basic / part4 / bstest / tif.bs < prev    next >
Encoding:
Text File  |  1986-11-30  |  180 b   |  11 lines

  1. 10 a=3.0
  2. 20 input b
  3. 30 if a==b then goto 100 else goto 70
  4. 40 print "failed"
  5. 50 stop
  6. 70 print rtoa(a);" != ";rtoa(b)
  7. 80 goto 20
  8. 100 print rtoa(a);" == ";rtoa(b)
  9. 110 goto 20
  10. 120 end
  11.