namespace LISTING_1_24_shared_flag_variable
static bool tickRunning = true;
public static void Main(string[] args)
Thread tickThread = new Thread(() =>
Console.WriteLine("Tick");
Console.WriteLine("Press a key to stop the clock");
Console.WriteLine("Press a key to exit");