main
1package stdout
2
3import "fmt"
4
5func Puts(message string) {
6	fmt.Println(message)
7}