Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
gop / usr / lib / gop / demo / _llgo / goroutine / goroutine.gop
Size: Mime:
import "c"

done := false
go func() {
	c.printf c"Hello, goroutine\n"
	done = true
}()
for !done {
	c.printf c"."
}