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

8
README.md Normal file
View file

@ -0,0 +1,8 @@
## Dev
Follow steps at [here](https://love2d.org/wiki/Getting_Started)
to download, install, and add Love 2d to path.
Once done games can be started with `love ./game_dir`

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