mchirico / zDaily

Playground to hack and test ideas with Zoe
1 stars 2 forks source link

Day 44: 1 of 2 create your own program #48

Open mchirico opened 3 years ago

mchirico commented 3 years ago

Day 1 of 2 create your own program. Show it off Thursday.

tacomonkautobot[bot] commented 3 years ago

mchirico, Thanks for opening this issue!

ZoeChiri commented 3 years ago

package main
import "fmt"
func main() {

    message_1 := make(chan string)

    go func() { message_1 <- "Mouse" }()

    msg_1 := <-message_1
    fmt.Println(msg_1)
}