Comments (Scripting): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Mindraker
No edit summary
>Mindraker
Line 18: Line 18:
== Block comments ==
== Block comments ==


Lua also offers block comments, which start with --[[ and run until the corresponding ]] .  A block comment can go over more than one line:
Lua also offers block comments, which start with the first double brackets and run until the corresponding double brackets:  


<pre>
<pre>

Revision as of 00:15, 18 October 2008

Introduction

This tutorial covers how to include comments in your script(s).

Single-line comments

A comment starts anywhere with a double hyphen (--) and runs until the end of the line:

Example:
-- This is an example of a comment

Comments do not appear in the output window. They are mostly to help the programmer understand what a section of code is for in long, complicated scripts.

Block comments

Lua also offers block comments, which start with the first double brackets and run until the corresponding double brackets:

Example:
    --[[
This is an example 
of a block comment.    
 --]]

Notice how this comment is on more than one line. In the first example, it is limited to one line.

See Also

1.3 - Some Lexical Conventions