Skip to content

Commit

Permalink
01-Hello-World
Browse files Browse the repository at this point in the history
  • Loading branch information
bonfy committed Sep 6, 2018
0 parents commit 483e26c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package main

import "net/http"

func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello World"))
})
http.ListenAndServe(":8888", nil)
}

0 comments on commit 483e26c

Please sign in to comment.