Control

:= [
    Screen([Size]),
    Cursor(
        [
            Position([Get, Save, Restore]),
            Display([On, Off]),
            Rel([Up, Down, Left, Right], U16),
            Row([Next, Prev], U16),
            Abs({ row : U16, col : U16 }),
            Col(U16),
        ],
    ),
    Erase(
        [
            Display([ToEnd, ToStart, All]),
            Line([ToEnd, ToStart, All]),
        ],
    ),
    Scroll([Up, Down], U16),
    Style(Style),
]

Control represents the control sequences for terminal commands. The provided commands are common and well-supported, though not exhaustive.