/**
* ============================================================================
* = echo.clear() =
* ============================================================================
*
* Clear the output of the current block.
*
* @returns {void}
*/
{
echo("Hello, World!");
setTimeout(() => echo.clear(), 1000);
}