package main

import "fmt"

//no leading space comment
func main() {
	t := []string{}
	for {
		fmt.Fprintf("%v", t)
	}
}
