15 lines
176 B
Go
15 lines
176 B
Go
package main
|
|
|
|
// #include <stdio.h>
|
|
// void fortytwo()
|
|
// {
|
|
// fprintf(stdin, "42");
|
|
// }
|
|
import "C"
|
|
import "runtime"
|
|
|
|
func main() {
|
|
C.fortytwo()
|
|
runtime.Breakpoint()
|
|
}
|