11 lines
99 B
Go
11 lines
99 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Fprintln(os.Stdout, "Hello from Go!")
|
||
|
}
|