1
0
mirror of https://github.com/thebaer/punctuation.git synced 2018-07-20 08:25:21 +00:00
punctuation/cmd/main.go
Matt Baer fe0a21acec Write code
,.(:.---).
2016-02-26 13:52:03 -05:00

14 lines
142 B
Go

package main
import (
"fmt"
"os"
"github.com/thebaer/punctuation"
)
func main() {
o := punctuation.Extract(os.Stdin)
fmt.Println(o)
}