love.event.quit

Available since LÖVE 0.8.0
This function is not supported in earlier versions.

Exits the LÖVE program. This has the same effect as love.event.push('q').

Function

Synopsis

love.event.quit( )

Arguments

None.

Returns

Nothing.

Example

function love.keypressed(k)
   if k == 'escape' then
      love.event.quit()
   end
end

See Also

Other Languages