Skip to content

Instantly share code, notes, and snippets.

@arbarlow
Created April 23, 2015 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arbarlow/b15f6ca221fb96d72d97 to your computer and use it in GitHub Desktop.
Save arbarlow/b15f6ca221fb96d72d97 to your computer and use it in GitHub Desktop.
package main
import "github.com/go-martini/martini"
func main() {
m := martini.Classic()
m.Get("/", func() string {
return "Hello world!"
})
m.Run()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment