mirror of https://github.com/on4kjm/FLEcli.git
parent
2c0ab69af7
commit
9aeaa70b60
@ -1,5 +0,0 @@
|
|||||||
package hello
|
|
||||||
|
|
||||||
func Hello() string {
|
|
||||||
return "Hello, world."
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
package hello
|
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
fmt.Println("hello world")
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
package hello
|
|
||||||
|
|
||||||
import "testing"
|
|
||||||
|
|
||||||
func TestHello(t *testing.T) {
|
|
||||||
want := "Hello, world."
|
|
||||||
if got := Hello(); got != want {
|
|
||||||
t.Errorf("Hello() = %q, want %q", got, want)
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in new issue