To print "fgsfd" to the console in Go, you would use the fmt
package to print to standard output. Here's an example:
main.go68 chars8 lines
This code declares a main
function which is the entry point of every Go program. It uses the fmt
package to print "fgsfd" to the console using the Println
function which adds a new line at the end of the string. When you run the program, it will output fgsfd
to the console.
gistlibby LogSnag