diff options
author | P. J. McDermott <pjm@nac.net> | 2013-11-16 01:05:54 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-11-16 01:05:54 (EST) |
commit | 81e576ed00137543f89e1892f148f442c807fa40 (patch) | |
tree | 6b9dac29ba41a189988a04527da2be1669e4b2ce | |
parent | 48cce04f85c7b49ab817c0001c636d9d4ffd299f (diff) | |
download | overworld-rpg-81e576ed00137543f89e1892f148f442c807fa40.zip overworld-rpg-81e576ed00137543f89e1892f148f442c807fa40.tar.gz overworld-rpg-81e576ed00137543f89e1892f148f442c807fa40.tar.bz2 |
hello: New game.
Easiest game ever. Prints "Hello, world!".
-rw-r--r-- | games/hello/init.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/games/hello/init.lua b/games/hello/init.lua new file mode 100644 index 0000000..e813b61 --- /dev/null +++ b/games/hello/init.lua @@ -0,0 +1,3 @@ +function on_init() + print("Hello, world!"); +end |