master
1package main
2
3import (
4 "fmt"
5 "github.com/bryfry/string"
6)
7func main() {
8 fmt.Println(string.Reverse("Hello, World!"))
9}