Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

In Go Lang, why we should import "fmt" only?

package main

import "fmt"

func main() {

}
by

1 Answer

iamabhishek
fmt package is generally used for formatted input and output. Hence this is the most used package in Golang.

Login / Signup to Answer the Question.