Lua Syntax

From Data Realms Wiki

(Difference between revisions)
Jump to: navigation, search
Line 159: Line 159:
[[Category:Lua]]
[[Category:Lua]]
[[Category:Tutorials]]
[[Category:Tutorials]]
-
 
-
[[http://baovevn.vn/cong-ty-tu-van-nghiep-vu-bao-ve/ cong ty bao ve]]
 
-
[[http://uvc-thanhlapcongty.com/dang-ky-online/dang-ky-thanh-lap-doanh-nghiep.html thành lập doanh nghiệp]]
 
-
[[http://thutucthanhlapcongty.net/index.php/dich-vu-tu-van-tim-ke-toan/ dịch vụ kế toán]]
 
-
[[http://www.cuudulieu24h.com cuu du lieu]]
 
-
[[http://noithathoangduy.com.vn noithat]]
 
-
[[http://ihrp.fis.com.vn/ Phần mềm nhân sự]]
 
-
[[http://ihrp.fis.com.vn/ Quản lý Nhân sự]]
 
-
[[http://ihrp.fis.com.vn/ Phần mềm quản lý nhân sự tiền lương]]
 
-
[[http://thamtuthanglong.com/ tham tu]]
 
-
[[http://thamtuthanglong.com/ cong ty tham tu]]
 
-
[[http://uvc-thanhlapcongty.com/cung-cap-dich-vu/dich-vu-ke-toan.html dịch vụ kế toán]]
 
-
[[http://uvc-thanhlapcongty.com/cung-cap-dich-vu/dich-vu-ke-toan.html dich vu ke toan]]
 
-
[[http://www.chiemhoa.vn/ ke sieu thi]]
 
-
[[http://www.chiemhoa.vn/ quay ke]]
 

Revision as of 17:53, 13 January 2012

Lua Syntax Syntax
If you have no idea how to use Lua, start here.


Lua Datatypes Datatypes
Descriptions of the data types Lua uses.


List of all Lua functions Functions
Listing of known functions.


LuaDocs/Index Official Reference
Raw output generated directly from Data's source.


Here's a little crash-course in Lua syntax, as it pertains to Cortex Command.

Contents

Variables

A variable stores a value. The value can be any of a few datatypes. Here are examples to assign variables x, y, and z number, boolean, and string values respectively:

  1. x = 21 --Integer
  2. y = true --Boolean
  3. z = "Cortex" --String

Comments

In programming, comments are parts of code that are completely ignored by the reading program. In Lua, this is accomplished with the use of two hyphens right next to each other: "--"

  1. --This is a proper comment.
  2. function() --Comments can also be placed after a statement.
  3.  
  4. --[[Or this format can be used
  5. to make a block comment,
  6. which can span multiple lines.
  7. ]]--

Variable Manipulation

Variables of any datatype can be manipulated in a variety of ways. We will explain the methods of computing, comparing, and assigning variable values.

Math

The math operators are common math signs:

Math Operators
Symbol Purpose
+ Addition
- Subtraction
* Multiplication
/ Division

Assignment & Math

These operators are shorthand; they first add the inputs, and then assign the result to the first.

Math Operators
Symbol Purpose
+= Addition
-= Subtraction
*= Multiplication
/= Division

Example:

  1. x = 1 --x is 1
  2. x = x + 1 --x is 2
  3. x += 1 --shorthand form; x is 3

Equality

These operators are usually used with control structures and return a boolean value.

Comparison Operators
Symbol Purpose
== is equal to
~= is not equal to
>= is greater or equal
<= is less or equal
> is greater than
< is less than

Example:

  1. x = 5 --assignment
  2. x == 5 --true
  3. x ~= 5 --false

Control Structures

If/then

One of the simplest logical constructions, the first statement is evaluated as a boolean. Equality operators are useful to this effect. If the first statement is true the statement after then is executed.

Example:

  1. x = 1
  2. if x == 1 then y = 1 end

or

  1. x = true
  2. if x then y = true end

For

A for loop is, simply put, a block of code that's executed multiple times.

Example:

  1. x = 0
  2. for i = 1, 10 do
  3. x = x + 1
  4. end

While

A while loop runs indefinitely, or while a condition is met.

Example:

  1. x = 1
  2. while x < 5 do -- "while x is lesser than five, do"
  3. x = x + 1 -- once x is greater than five, the while loop will cease to execute until x is lesser than five again
  4. end

Functions

A Lua function is a set of instructions invoked as a group by name with the syntax:

  1. function_name(arguments)

In Lua, the trailing parenthesis are not necessary for control structures such as if or for, but may be useful to maintain logical flow while reading code. If in doubt, parenthesize. Another important facet of functions is their return value. A function can be used in the stead of a datatype as long as its return value is of that datatype.

Member Functions

You may have wondered at the term "member function," but this is simply a function that is organized into a group of functions and variables which in Cortex Command are the Manager objects. Proper syntax for accessing member functions in Lua:

  1. object_name:function_name(arguments)
Personal tools