github.com/cnboonhan/delve@v0.0.0-20230908061759-363f2388c2fb/_fixtures/dwzcompression.go (about) 1 package main 2 3 // #include <stdio.h> 4 // void fortytwo() 5 // { 6 // fprintf(stdin, "42"); 7 // } 8 import "C" 9 import "runtime" 10 11 func main() { 12 C.fortytwo() 13 runtime.Breakpoint() 14 }