Difference between revisions of "Category:LSL Types"

From Second Life Wiki
Jump to navigation Jump to search
(heh)
Line 4: Line 4:
A [data] type is a definition of the type or format of data.
A [data] type is a definition of the type or format of data.


An integer for example, defines that the variable which will hold this kind (or 'type') of data shall contain only integers, which are numeric values in the range of  -32767 to 32767.
An integer for example, defines that the variable which will hold this kind (or 'type') of data shall contain only integers, which for 32-bit are whole number values in the range of  0x00000000 to 0xFFFFFFFF.


===Example===
===Example===
int myVar = 123;
int myVar = 123;

Revision as of 14:30, 13 February 2007

Introduction

A [data] type is a definition of the type or format of data.

An integer for example, defines that the variable which will hold this kind (or 'type') of data shall contain only integers, which for 32-bit are whole number values in the range of 0x00000000 to 0xFFFFFFFF.

Example

int myVar = 123;

Subcategories

This category has the following 8 subcategories, out of 8 total.

Pages in category "LSL Types"

The following 7 pages are in this category, out of 7 total.