Skip to content

Instantly share code, notes, and snippets.

@davidalpert
Forked from thecodejunkie/gist:898770
Created July 13, 2011 04:26
Show Gist options
  • Save davidalpert/1079718 to your computer and use it in GitHub Desktop.
Save davidalpert/1079718 to your computer and use it in GitHub Desktop.
Blog - Hello World
public class MainModule : NancyModule
{
public MainModule()
{
Get["/"] = parameters => {
return "Hello World";
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment