Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4. "fmt"
  5. )
  6.  
  7. // #include <stdlib.h>
  8. // #include "signal.h"
  9. import "C"
  10.  
  11. func main() {
  12. fmt.Println("Good bye!")
  13. C.signal(C.SIGABRT, 0)
  14. C.abort()
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement