Files
LearnGO/go/pkg/mod/github.com/go-delve/delve@v1.23.0/_fixtures/dwzcompression.go
T
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()
}