mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
16 lines
119 B
Go
16 lines
119 B
Go
package main
|
|
|
|
/*
|
|
#include <stdio.h>
|
|
|
|
void hello()
|
|
{
|
|
puts("Hello,world!");
|
|
}
|
|
*/
|
|
import "C"
|
|
|
|
func main() {
|
|
C.hello()
|
|
}
|