Jak pokazano poniżej, oba fmt.Println()
i println()
dają te same wyniki w Go:Hello world!
Ale: czym różnią się od siebie?
Snippet 1, używając fmt
pakietu;
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello world!")
}
Snippet 2, bez fmt
pakietu;
package main
func main() {
println("Hello world!")
}