Go Print Variables

[Solved] Go Print Variables | Go - Code Explorer | yomemimo.com
Question : Go Print Variables

Answered by : samer-saeid

// Program to illustrate fmt.Print()
package main
// importing the fmt package
import ("fmt")
func main() { name := "John" fmt.Print(name)
}

Source : | Last Update : Thu, 23 Jun 22

Answers related to go print variables

Code Explorer Popular Question For Go