presentations/highlight-js/test/detect/go/default.txt

13 lines
214 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
package main
import "fmt"
func main() {
ch := make(chan float64)
ch <- 1.0e10 // magic number
x, ok := <- ch
defer fmt.Println(`exitting now\`)
go println(len("hello world!"))
return
}