Skip to content

Instantly share code, notes, and snippets.

@Reine0017
Last active August 9, 2022 10:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Reine0017/25961a552ac4c6478f93e73bf6564fbc to your computer and use it in GitHub Desktop.
Save Reine0017/25961a552ac4c6478f93e73bf6564fbc to your computer and use it in GitHub Desktop.
Unworking Go Routine Example
package main
import "fmt"
func myFunc() {
fmt.Println("Reine")
}
func main() {
fmt.Println("Hello")
go myFunc()
fmt.Println("World")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment