go_playground/4-testing/hello.go
2021-12-30 20:35:15 +01:00

14 lines
225 B
Go

package main
import (
"fmt"
"example/user/testing/importpackage"
"github.com/google/go-cmp/cmp"
)
func main() {
fmt.Println(importpackage.ReverseRunes("!oG ,olleH"))
fmt.Println(cmp.Diff("Hello World", "Hello Go"))
}