BER — Events

Note: "Bernardo" is the real name of the BER creator. Please respect privacy and no drama.

Event Handler Basics

Events let your BER code respond to triggers. Define functions as event handlers and run them.

function onClick()
    board:("Button clicked!")
end

run onClick()