package main

import "fmt"

func main() {
    
    ch := make(chan int)

    go func(ch chan<- int) {
        fmt.Println("hello")
        ch <- 1
    }(ch)

    <-ch
    fmt.Println("bye")
    
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: