import package project

This commit is contained in:
2021-12-30 20:34:53 +01:00
parent abe8ee6c91
commit 956f2b3ca5
4 changed files with 76 additions and 0 deletions

11
2-importpackage/hello.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"fmt"
"example/user/importpackage/importpackage"
)
func main() {
fmt.Println(importpackage.ReverseRunes("!oG ,olleH"))
}