hvanu's picture
Update
8549d8b
raw
history blame
99 Bytes
// print hello world
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello, World!")
}