Skip to content

Instantly share code, notes, and snippets.

View robdmoore's full-sized avatar

Rob Moore (MakerX) robdmoore

View GitHub Profile
@dtchepak
dtchepak / IOSample.cs
Created March 28, 2013 12:46
Messing around with an IO type in C#
using System;
namespace Workshop.Terminal
{
// Meh, close enough
public sealed class Unit { }
public sealed class IO<T>
{
private readonly Func<T> ioAction;