How to print string without double quotes in Go

1 Answer

0 votes
package main 
    
import ( 
    "fmt"
) 
 
func main() { 
    str := "go java c c++ python"

	fmt.Printf(str)
} 
    
     
     
   
      
/*
run:
       
go java c c++ python
   
*/

 



answered Aug 23, 2020 by avibootz
edited Jun 10, 2023 by avibootz

Related questions

3 answers 234 views
234 views asked Jun 10, 2023 by avibootz
4 answers 251 views
1 answer 183 views
1 answer 164 views
1 answer 184 views
184 views asked Aug 19, 2020 by avibootz
2 answers 325 views
...