From 9575795f2bb0ca72cc02ac40b7379186134f23f6 Mon Sep 17 00:00:00 2001 From: Travis Shears Date: Sat, 5 Jul 2025 13:14:20 +0200 Subject: [PATCH] init with lua hello world example --- README.md | 8 ++++++++ hello_world_lua/main.lua | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 README.md create mode 100644 hello_world_lua/main.lua 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