Semicolon (;)

;: Next Body

→full documentation

End the current block body and start a new one. Headers (:) and predicates (?) can control which body is evaluated. A function can have two headers without these, indicating the monadic and dyadic cases.

↗️
    3 { 𝕩÷2 ; -𝕨𝕩 } 4   # Monadic and dyadic cases
⟨ ¯3 ¯4 ⟩

    F  {𝕊ab: a-b; 𝕊abc: b+c}

    F 52                # Matches first header
3

    F 136              # Matches second header
9