function countdown(n)
    _If n == 0 _Then
        _Print_Console("Blastoff!")
    _Else
        _Print_Console(n)
        countdown(n - 1)
    _End_If
end

countdown(5)