1
0
mirror of https://github.com/Adorable-Catgirl/LuaComp.git synced 2025-04-08 12:48:19 +10:00
Mirror of LuaComp
Go to file
2021-04-16 19:24:54 +07:00
completion/zsh whoops 2019-12-15 13:01:16 -05:00
examples Whoops. 2020-03-18 13:34:46 -05:00
manual okay, we good now. i think. 2019-12-14 17:16:32 -05:00
src I mistook application.lua for the main file. Fixed 2021-04-16 18:17:47 +07:00
.gitignore This should work questionmark. 2020-03-18 13:23:39 -05:00
LICENSE Update LICENSE 2019-11-04 23:43:12 -05:00
make_release.lua This should work questionmark. 2020-03-18 13:23:39 -05:00
Makefile Install target for Linux 2021-04-16 19:24:54 +07:00
README.md okay, we good now. i think. 2019-12-14 17:16:32 -05:00

LuaComp

A general purpose preprocessor and postprocessor written in Lua.

Building

See manual/README.md

How-To

Merging source files

-- myfile.lua
local my_lib = {}

function my_lib.hello_world()
  print("Hello, world!")
end
-- main.lua
--#include "my_file.lua"
my_lib.hello_world()

Getting enviroment variables

print("This was compiled in the shell "..$(SHELL))

Macros

@[[function my_macro(a, b)]]
print("Hello, @[{a}]. Your lucky number is @[{b}].")
@[[end]]

@[[my_macro("world", 7)]]
@[[my_macro("user", 42)]]
@[[my_macro("Earth", 0)]]
@[[my_macro("Satna", 666)]]