How to write backslash in string with Go

1 Answer

0 votes
package main

import "fmt"

func main() {
	fmt.Println("Go\\PHP\\Python")
}

  
  
/*
run:
  
Go\PHP\Python
  
*/

 



answered Aug 14, 2020 by avibootz
...