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-26T10:11:31Z

Updated

2019-03-26T10:11:31Z

package main

import "fmt"

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