You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

golang.adoc 180B

12345678910111213
  1. ---
  2. title: "Golang"
  3. ---
  4. == Golang
  5. === Handling interrupts
  6. [source,golang]
  7. ----
  8. c := make(chan os.Signal, 1)
  9. signal.Notify(c, os.Interrupt)
  10. signal.Notify(c, syscall.SIGTERM)
  11. ----