commit 9575795f2bb0ca72cc02ac40b7379186134f23f6 Author: Travis Shears Date: Sat Jul 5 13:14:20 2025 +0200 init with lua hello world example diff --git a/README.md b/README.md new file mode 100644 index 0000000..ad84b93 --- /dev/null +++ b/README.md @@ -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` diff --git a/hello_world_lua/main.lua b/hello_world_lua/main.lua new file mode 100644 index 0000000..bc46983 --- /dev/null +++ b/hello_world_lua/main.lua @@ -0,0 +1,3 @@ +function love.draw() + love.graphics.print("Hello World", 400, 300) +end \ No newline at end of file