2020-05-01 09:43:36 +08:00

16 lines
119 B
Go

package main
/*
#include <stdio.h>
void hello()
{
puts("Hello,world!");
}
*/
import "C"
func main() {
C.hello()
}