Enable JavaScript in the browser to display LibreOfficeDev Help pages.

kinGJ‖

aBBaD‖How to Read Syntax Diagrams and Statements

k3Ey9‖LibreOfficeDev Basic statements use syntax diagrams and textual conventions that follow these notations:

6cDAC‖The syntax of a LibreOfficeDev Basic one line statement is illustrated herewith:

8Co5j‖Diagram example

2ERcw‖syntax of a statement

QDyRr‖A set of LibreOfficeDev Basic statements - with optional labels - is using a colon : sign to separate them, it can be terminated with an optional comment. REM or an apostrophe sign introduce a comment.

fR7p7‖diagram fragment

tMPo2‖Textual example

[ [label:] statement [: …] ] [{REM|'} text]

VFKcU‖A set of LibreOfficeDev Basic statements - with optional labels - is using a colon : sign to separate them, it can be terminated with an optional comment. REM or an apostrophe sign introduce a comment.

EFSA4‖Example:


       Sub Main
       h7uXB‖    GoTo there ' skip first statement and display '2'
       F5v7o‖    here: Print 1, : there: Print 2 REM multi-statement line
       End Sub