love.graphics.draw( string, x, y )
Draws text in the current color.
Usage
love.graphics.draw( string, x, y )
Arguments
stringA text string.
xThe position on the x-axis.
yThe position on the y-axis.
Returns
Nothing
Examples
Example 1: Draw some text.
love.graphics.draw("This is text!", 100, 100)