Skip to content

Instantly share code, notes, and snippets.

@thecodejunkie
Created April 1, 2011 20:14
Show Gist options
  • Save thecodejunkie/898770 to your computer and use it in GitHub Desktop.
Save thecodejunkie/898770 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