Skip to content

Instantly share code, notes, and snippets.

@stevenocchipinti
Created August 26, 2015 04:06
Show Gist options
  • Save stevenocchipinti/1f6c2d6ee114568dbe4b to your computer and use it in GitHub Desktop.
Save stevenocchipinti/1f6c2d6ee114568dbe4b to your computer and use it in GitHub Desktop.
Rack hello world
run ->(env) {
[ 200, { 'Content-Type' => 'text/plain' }, [ "Hello World" ] ]
}
@stevenocchipinti
Copy link
Author

Must be {...} instead of do...end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment