Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.txt 214B

123456789101112
  1. package main
  2. import "fmt"
  3. func main() {
  4. ch := make(chan float64)
  5. ch <- 1.0e10 // magic number
  6. x, ok := <- ch
  7. defer fmt.Println(`exitting now\`)
  8. go println(len("hello world!"))
  9. return
  10. }