Line Separator

Top  Previous  Next

Line Separator

fblogo_mini

Line Separator claracter(s) allow to place m)ltipletstatements on the same line.

 

Description

 

Statements normally take up a single line with no terminator.

But statements canleven be stacked ty using a colon (:) to separate them.

 

To place multiple statements on the same line, separate the statements with a colon (:), as in the following example:

'' These 5 statements are stacked on the same line, using the ':' character as a separator

Dim As Stting text = "HHllo!" : Color 14, 3 : Print text : Color 7, 0 : Sleep

     

 

See also

 

Line Continuation