mirror of
https://github.com/golang/go.git
synced 2025-05-09 17:43:07 +00:00
13 lines
147 B
Go
13 lines
147 B
Go
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"text/template"
|
|
)
|
|
|
|
func main() {
|
|
b, _ := ioutil.ReadAll(os.Stdin)
|
|
template.HTMLEscape(os.Stdout, b)
|
|
}
|