Example #1
0
func main() {
	pr := prettywords.PrettyRubric{
		Limit: 80,
	}

	rest := os.Args[1:]
	pr.Body = rest
	formatted := pr.Format()
	fmt.Println(strings.Join(formatted, "\n"))
}