Difference between revisions of "variable"
(Added i18n template and source code reformatted.) |
m (→Example) |
||
Line 5: | Line 5: | ||
<source lang="lua"> | <source lang="lua"> | ||
function love.mousepressed( x, y, button ) | function love.mousepressed( x, y, button ) | ||
− | if button == | + | if button == 1 then -- Versions prior to 0.10.0 use the MouseConstant 'l' |
time = time + 1 | time = time + 1 | ||
end | end |
Latest revision as of 08:35, 23 March 2019
A variable is a value like val, var, and any other letter or word that is not already assigned to something else.
Example
Changes a variable by 1 each time the left mouse button is clicked
function love.mousepressed( x, y, button )
if button == 1 then -- Versions prior to 0.10.0 use the MouseConstant 'l'
time = time + 1
end
end
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info