This commit is contained in:
GO
2021-09-07 19:55:43 +00:00
parent 354983d93f
commit b0a83f934e
4 changed files with 68 additions and 2 deletions

View File

@ -1,7 +1,11 @@
package main
import "fmt"
import (
"fmt"
"c.infdj.com/GO/courses_golang/hello/morestrings"
)
func main() {
fmt.Println("Hello, world.")
// fmt.Println("Hello, world.")
fmt.Println(morestrings.ReverseRunes("!oG ,olleH"))
}