Skip to content

Instantly share code, notes, and snippets.

@skoon
Created July 7, 2010 03:53
Show Gist options
  • Save skoon/466278 to your computer and use it in GitHub Desktop.
Save skoon/466278 to your computer and use it in GitHub Desktop.
public class Minnow : App
{
public Minnow(Context context)
: base(context)
{
get("/", index);
}
private void index(Context context)
{
this.Write("Hey Skipper");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment