You've already forked llvm-project
mirror of
https://github.com/encounter/llvm-project.git
synced 2026-03-30 11:27:19 -07:00
572b9f468a
Implements the command script import command for Lua. Differential revision: https://reviews.llvm.org/D71825
8 lines
90 B
Lua
8 lines
90 B
Lua
local mymodule = {}
|
|
|
|
function mymodule.foo()
|
|
print("Hello World!")
|
|
end
|
|
|
|
return mymodule
|