Files
Document-Management-System-…/vendor/scrivo/highlight.php/test/detect/go/default.txt

13 lines
214 B
Plaintext
Raw Normal View History

2021-04-07 19:25:18 -04: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
}