Files
2024-09-19 21:38:24 -04:00

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()
}