using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Reactive.Linq;
using System.Reactive.Subjects;
public static void Main()
Observable.Timer(TimeSpan.FromSeconds(1)).Subscribe(_ => Console.WriteLine("TIMER!"));
Console.WriteLine("BEFORE TIMER");