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-23T08:26:12Z

Updated

2019-03-23T08:26:12Z

package main

import "fmt"

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