Last active
May 19, 2019 20:54
-
-
Save lakinduakash/4dd2571ed0abc1cb67b113166b95b759 to your computer and use it in GitHub Desktop.
This file contains 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 world() { | |
fmt.Print("World") | |
} | |
func main() { | |
go world() | |
fmt.Print("Hello ") | |
time.Sleep(400 * time.Millisecond) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment