This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
HelloWorld/Go/HelloWorld.go
Glaukio 39d2e10608
Update HelloWorld.go
Use the built-in Go function println() instead of complicating it with the fmt library.
2022-01-09 02:08:43 +01:00

5 lines
62 B
Go

package main
func main() {
println("hello world")
}