File size: 99 Bytes
8549d8b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
// print hello world
package main

import (
	"fmt"
)

func main() {
	fmt.Println("Hello, World!")
}