mirror of
https://github.com/thebaer/punctuation.git
synced 2018-07-20 08:25:21 +00:00
14 lines
142 B
Go
14 lines
142 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
"github.com/thebaer/punctuation"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
o := punctuation.Extract(os.Stdin)
|
||
|
fmt.Println(o)
|
||
|
}
|