Jumper

void Jump()
{
    if(Seen("place"))
        goto place;

    return;

    place: ;
}
Vote up this code0