A package/CLI written in Golang that translates any sentence in the English alphabet to Pig Latin 🐷
go get github.com/SeanMcGoff/piglatin
package main
import (
"fmt"
"github.com/SeanMcGoff/piglatin"
)
func main() {
text := piglatin.ToPigLatin("hello world")
fmt.Println(text) //ellohay orldway
}