From ca58921e2e85489aec1b11857be9275b9ebc7157 Mon Sep 17 00:00:00 2001 From: Howland Owl Date: Tue, 25 Apr 2017 22:51:22 +0300 Subject: [PATCH] a simple test lua file. doesn't do anything useful yet. --- color.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 color.lua diff --git a/color.lua b/color.lua new file mode 100644 index 0000000..9a6bf33 --- /dev/null +++ b/color.lua @@ -0,0 +1,9 @@ +-- Lua test file + +function ithecolors( c ) + a = 5 + b = 7 + io.write("some shit from lua\n") +end + +ithecolors()