Skip to content

Instantly share code, notes, and snippets.

@thecodejunkie
Created April 1, 2011 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • 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