13 lines
89 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() {
2014-06-03 21:18:50 -04:00
α := "☃"
2014-04-30 11:33:02 -04:00
for {
2014-06-03 21:18:50 -04:00
fmt.Printf(α)
2014-04-30 11:33:02 -04:00
}
}