mirror of
https://git.shadowkat.net/izaya/OC-PsychOS2.git
synced 2024-11-13 00:27:00 -05:00
8 lines
219 B
Lua
8 lines
219 B
Lua
local preproc = require "preproc"
|
|
--local tA = {...}
|
|
function preproc.directives.includelib(file,name)
|
|
return string.format("package.loaded.%s = (function()\n%s\nend)()", name, preproc.preproc(file))
|
|
end
|
|
|
|
preproc(...)
|