ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
426 B

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