Quick actions

cmd+k|ctrl+k

Navigation

Languages

Getting started / Hello, World! / Essential Go

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-03-10T23:28:45Z

Updated

2019-03-10T23:28:45Z

package main

import "fmt"

func main() {
	fmt.Println("Hello, 世界")
}
INFO