Skip to content

Instantly share code, notes, and snippets.

@mattsdni
Created May 11, 2018 16:43
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 mattsdni/891f6fabe6c6e880efae5eb6c520ac45 to your computer and use it in GitHub Desktop.
Save mattsdni/891f6fabe6c6e880efae5eb6c520ac45 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"net/http"
"io/ioutil"
"os"
)
func main() {
response, err := http.Get("https://gist.githubusercontent.com/mattsdni/891f6fabe6c6e880efae5eb6c520ac45/raw/quine.go")
if err != nil {
fmt.Printf("%s", err)
os.Exit(1)
} else {
defer response.Body.Close()
contents, err := ioutil.ReadAll(response.Body)
if err != nil {
fmt.Printf("%s", err)
os.Exit(1)
}
fmt.Printf("%s\n", string(contents))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment