12 lines
131 B
Go
12 lines
131 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func run(args []string, stdout io.Writer) error {
|
|
fmt.Println("hello world")
|
|
return nil
|
|
}
|