Files
go-gst/hack/sleep.go
2020-09-30 19:55:44 +03:00

16 lines
176 B
Go

package main
// #include <unistd.h>
import "C"
import (
"fmt"
)
func main() {
go func() {
C.sleep(1000000000)
fmt.Println("I slept")
}()
fmt.Println("Hello world")
}