blob: 5b056cad4e2f91afefdac307bbb8af57432244fa [file] [log] [blame]
// +build ignore,OMIT
package main
import (
"fmt"
"golang.org/x/net/websocket"
"net/http"
)
func main() {
http.Handle("/", websocket.Handler(handler))
http.ListenAndServe("localhost:4000", nil)
}
func handler(c *websocket.Conn) {
var s string
fmt.Fscan(c, &s)
fmt.Println("Received:", s)
fmt.Fprint(c, "How do you do?")
}