12 lines
79 B
Go
Raw Normal View History

2014-04-30 11:33:02 -04:00
package main
2014-05-07 10:57:27 -07:00
import (
"fmt"
)
2014-04-30 11:33:02 -04:00
func main() {
for {
2014-04-30 11:41:55 -04:00
fmt.Printf("☃")
2014-04-30 11:33:02 -04:00
}
}