kinGJ‖

aBBaD‖How to Read Syntax Diagrams and Statements

jJGWn‖LibreOfficeDev Basic statements use syntax diagrams and textual conventions that follow these typographical rules:

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
       uAASv‖    GoTo there ' skip first statement
       XESFM‖    here: Print 1, : there: Print 2 REM explanatory text here
       End Sub