Skip to content

Instantly share code, notes, and snippets.

@dumindu
Created March 8, 2020 04:53
Show Gist options
  • Save dumindu/58b49cd802f47526b92b46c52cd3981d to your computer and use it in GitHub Desktop.
Save dumindu/58b49cd802f47526b92b46c52cd3981d to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"time"
)
func main() {
go sayHello()
time.Sleep(1 * time.Second)
}
func sayHello() {
fmt.Println("Hello world!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment