# event.lua

{% code overflow="wrap" %}

```lua
local event = {}

function event.hello_event()
    print("hello event from inside lua!")
end

function event.hello_event_again()
    print("hello event again from inside lua!")
end

return event
```

{% endcode %}
