github.com/neilgarb/delve@v1.9.2-nobreaks/_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 }