Golang : Dealing with backquote




Just a quick tutorial note on how to deal with backquote in Golang or rather a note for myself :P

Wrap the backquote with " in order to place a backquote inside a fmt.Println() function.

For example :

 package main

 import "fmt"

 func main() {

  fmt.Println("" + "`" + "")

  // in between string
  fmt.Println(("a " + "`" + " backquote"))

 }

Output :

`

a ` backquote

Hope you may find this simple tutorial useful.





By Adam Ng

IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.


Advertisement