Operating system for OpenComputers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
219B

  1. local preproc = require "preproc"
  2. --local tA = {...}
  3. function preproc.directives.includelib(file,name)
  4. return string.format("package.loaded.%s = (function()\n%s\nend)()", name, preproc.preproc(file))
  5. end
  6. preproc(...)