Skip to content

Instantly share code, notes, and snippets.

@ota42y
Last active July 16, 2018 06:12
Show Gist options
  • Save ota42y/833cfbb6af92c0db17a1353d4e7acf5f to your computer and use it in GitHub Desktop.
Save ota42y/833cfbb6af92c0db17a1353d4e7acf5f to your computer and use it in GitHub Desktop.
package main
import "fmt"
import "time"
func main() {
go func() {
fmt.Println("gopher")
}()
time.Sleep(time.Second)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment