Don't click here unless you want to be banned.

LSL Wiki : statement

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are crawl338.us.archive.org

Statement

A statement is a line of code that is terminated by a semicolon. All statements in a program are separated from one another by semicolons (the compiler ignores whitespace). These rules make up LSL syntax.

Examples:
integer answer = 42;

llSay(0,"The answer to life, the universe and everything: " + (string)answer);
The first and third line of this example are statements.


Script
There is one comment on this page. [Display comments/form]