1
Fork 0
hermetic_cc_toolchain/test/hello.go

10 lines
131 B
Go
Raw Normal View History

2021-06-07 22:33:34 +03:00
package main
// #include <stdio.h>
// void helloworld() { printf("hello, world\n"); }
import "C"
func main() {
C.helloworld()
}