This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Simple HTTP server that returns random HTTP status code, written in Go. | |
| // Author: Gary A. Stafford <[email protected]> | |
| // Created: 11/04/2016 | |
| package main | |
| import ( | |
| "io" | |
| "math/rand" | |
| "net/http" |