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
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| ) | |
| func mainLoop() { | |
| fmt.Println("starting main loop, this will die after dividing by 0") | |
| i := 0 |
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
| package main | |
| import "fmt" | |
| import "sort" | |
| func main() { | |
| m := map[string]int{ | |
| "One": 1, | |
| "Two": 2, | |
| "Three": 3, |
NewerOlder