mirror of
https://github.com/soypat/lneto.git
synced 2026-08-18 21:54:01 +00:00
10 lines
89 B
Go
10 lines
89 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
os.Stdout.WriteString("Hello world!\n")
|
|
}
|