love.event.quit

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

Exits the LÖVE program.

Function

Synopsis

love.event.quit( )

Arguments

None.

Returns

Doesn't return.

Example

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

See Also


Other Languages