Mold
A task runner configured with Lua.
Mold is a task runner. It uses Lua as configuration file and is an alternative to GNU Make.
Installation
-
Go to releases.
-
Use Go modules.
go install github.com/icecafecup/[email protected]
Usage example
Create a file named mold.lua
.
function hello()
print("Hello")
end
And then run this command.
mold hello # hello is the task name.
Finally, this is the output.
Hello