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 / mlifthen.bas < prev    next >
BASIC Source File  |  1993-11-09  |  426b  |  17 lines

  1.  
  2. rem -------------------------------------------------
  3. rem mlifthen.bas -- Test MultiLine IF-THEN statement
  4. rem -------------------------------------------------
  5.  
  6. Print "MLIFTHEN.BAS -- Test MultiLine IF-THEN-ELSE Constructions"
  7.  
  8. If 3 = 4 then
  9.    Print "The Condition is true."
  10.    Print "And it still is true."
  11. Else
  12.    Print "The condition is false."
  13.    Print "And it still is false."
  14. End If
  15.  
  16. Print "This concludes our test."
  17.