Created
September 24, 2017 23:04
-
-
Save tilaklodha/618f6a11c192bdd7153d9f8ab719df36 to your computer and use it in GitHub Desktop.
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 print() { | |
fmt.Println("Printing from goroutine") | |
} | |
func main() { | |
go print() | |
time.Sleep(1 * time.Second) | |
fmt.Println("Printing from main") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment