Statement terminator

Genero Business Development Language (BDL) requires no statement terminators, but you can use the semicolon ( ; ) as a statement terminator in some cases.

For example, you can add a semicolon statement terminator for PREPARE and PRINT statements.

MAIN
  DISPLAY "Hello, World"  DISPLAY "Hello, World"
  DISPLAY "Hello, World"; DISPLAY "Hello, World"
END MAIN