SecondBASIC Documentation v3

Home / Command Reference / Reset

Reset

Description: Performs a soft reset on the console. Soft resets do not clear memory.

Syntax:

Reset

Example:

    If a = 0 Then
        a++
        Reset
    Else
        Print "Soft Reset!"
    End If