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