Skip to content

Instantly share code, notes, and snippets.

@lakinduakash
Last active May 19, 2019 20:54
Show Gist options
  • Save lakinduakash/4dd2571ed0abc1cb67b113166b95b759 to your computer and use it in GitHub Desktop.
Save lakinduakash/4dd2571ed0abc1cb67b113166b95b759 to your computer and use it in GitHub Desktop.
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