Difference between revisions of "variable"

m
m (Fixed typo..)
Line 5: Line 5:
 
<source lang="lua">
 
<source lang="lua">
 
function love.mousepressed( x, y, button )
 
function love.mousepressed( x, y, button )
if button == "l" then
+
    if button == "l" then
time = time + 1
+
        time = time + 1
 +
    end
 
end
 
end
 
</source>
 
</source>

Revision as of 01:32, 19 July 2013

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 == "l" then
        time = time + 1
    end
end

See Also

love.mousepressed