Skip to content

Instantly share code, notes, and snippets.

@kerslake
Created April 28, 2014 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kerslake/11373957 to your computer and use it in GitHub Desktop.
Save kerslake/11373957 to your computer and use it in GitHub Desktop.
var streamOverTime = Observable.Interval(TimeSpan.FromSeconds(1));
var squaredStreamOverTime = streamOverTime.Select(value => Math.Pow(value, 2));
squaredStreamOverTime.Subscribe(Console.WriteLine);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment