Int: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
(5 intermediate revisions by 5 users not shown)
Line 1: Line 1:
An integer is any whole number. It can be positive, zero, or negative. Examples: 1 0 -1
An '''int'''eger is any whole number (i.e. without a decimal point). It can be positive, zero, or negative.
 
A number with a decimal point and following numbers is referred to as a [[float]] number.
 
Lua allows you to use these interchangeably and will convert between the two as needed.
[[Category:Scripting Concepts]]
 
[[hu:Int]]
[[de:Int]]

Revision as of 17:12, 18 July 2018

An integer is any whole number (i.e. without a decimal point). It can be positive, zero, or negative.

A number with a decimal point and following numbers is referred to as a float number.

Lua allows you to use these interchangeably and will convert between the two as needed.