I hereby claim:
- I am monkrus on github.
- I am monkrus (https://keybase.io/monkrus) on keybase.
- I have a public key ASCLQYvA2oqUovYRGXLlGLL-uahxP0xJgeicNpFvhV6QrQo
To claim this, I am signing this object:
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| func main() { | |
| b := Bird{} | |
| b.Gender ="male" | |
| b.Name = "Emu" |
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| func main() { | |
| Loop: | |
| for i := 1; i <= 3; i++ { |
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| func main() { | |
| statePopulations := map[string]int{ | |
| "California": 39250017, |
| package main | |
| import ( | |
| "fmt" | |
| "html/template" | |
| "net/http" | |
| "time" | |
| ) | |
| type Welcome struct { |
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| ) | |
| func main() { | |
| //step 2 | |
| http.HandleFunc("/", foo) |
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| type person struct { | |
| first string | |
| last string | |
| } |
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| func main() { | |
| x := bar() | |
| fmt.Printf("%T\n", x) | |
| / |
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| func main() { | |
| a := incrementor() | |
| b := incrementor() | |
| fmt.Println(a()) |