Easypt

beep

..Root.console.beep

Plays the sound of a beep (writes \a to the standard output).

(\a = 7 in ASCII encoding)

Child of:

console

Signatures:

NativeCallable, Callable

Example:

import("console");

while (true, {
    if (console.read().==("beep"), {
        console.beep();
        console.writeLine(">_<");
    });
});