# Hello World use Golang

By [xvbnm48](https://paragraph.com/@xvbnm48) · 2022-06-30

---

WIth Golang, we can print text like “hello world” with simple code like this

    package main
    
    import "fmt"
    
    func main(){
      fmt.Println("Hello World!")
    }
    

With fmt pacakge, we can print text to console!.

---

*Originally published on [xvbnm48](https://paragraph.com/@xvbnm48/hello-world-use-golang)*
