Yonk-Labs/Sample Code/Hello World in Go/Hello World in Go12 April 2026·1 minGo ExampleTable of ContentsThe CodeHow to RunFull SourceTable of ContentsThe CodeHow to RunFull SourceA minimal Go program to get started.The Code#package main import "fmt" func main() { fmt.Println("Hello from Yonk-Labs!") }How to Run#go run main.goFull Source#See the complete example on GitHub.