mirror of
https://github.com/goplus/llgo.git
synced 2025-09-27 03:56:05 +08:00
13 lines
136 B
Go
13 lines
136 B
Go
package main
|
|
|
|
func main() {
|
|
done := false
|
|
go func() {
|
|
println("Hello, goroutine")
|
|
done = true
|
|
}()
|
|
for !done {
|
|
print(".")
|
|
}
|
|
}
|