summaryrefslogtreecommitdiff
path: root/tests/actions/addon/custom-plugin/plugins/hello_addon/main.lua
blob: 0cf3a038602a557a4ba612644121ec427b3afce9 (plain)
1
2
3
4
5
import("core.base.option")

function main()
    print("hello from custom-plugin: %s", option.get("name") or "world")
end