init with lua hello world example

This commit is contained in:
Travis Shears 2025-07-05 13:14:20 +02:00
commit 9575795f2b
2 changed files with 11 additions and 0 deletions

3
hello_world_lua/main.lua Normal file
View file

@ -0,0 +1,3 @@
function love.draw()
love.graphics.print("Hello World", 400, 300)
end