Files
go_playground/2-importpackage/hello.go
2021-12-30 20:34:53 +01:00

11 lines
148 B
Go

package main
import (
"fmt"
"example/user/importpackage/importpackage"
)
func main() {
fmt.Println(importpackage.ReverseRunes("!oG ,olleH"))
}