using System;
public class Program
{
public static void Main()
start: //the bookmark
Console.WriteLine("This is an example of a bookmark");
Console.ReadLine();
goto start; // this is the jump statement
}