import remote project

This commit is contained in:
2021-12-30 20:35:06 +01:00
parent 956f2b3ca5
commit d7f0e206ca
5 changed files with 64 additions and 0 deletions

14
3-importremote/hello.go Normal file
View File

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