10 lines
131 B
Go
10 lines
131 B
Go
package main
|
|
|
|
// #include <stdio.h>
|
|
// void helloworld() { printf("hello, world\n"); }
|
|
import "C"
|
|
|
|
func main() {
|
|
C.helloworld()
|
|
}
|