main.go 93 Bytes
Newer Older
1 2 3 4 5
package main

import "os"

func main() {
6
	_, _ = os.Stdout.Write([]byte("hello world!\n"))
7
}