start with httpd // fix timestamps on git
[k_transpose.git] / httpd.go
CommitLineData
53d46aa3 1package main
03519b4f 2
3import "fmt"
53d46aa3 4import "net/http"
03519b4f 5
6func main() {
7
53d46aa3 8 /* make sure to close() anything you need to (you need to) */
03519b4f 9 fmt.Println("welp");
53d46aa3 10 resp, err := http.Get("http://kremlin.cc")
11
12 if err != nil {}
13 fmt.Println(resp)
03519b4f 14}