blob: 86a8a8b1482cb94127c017fbc45bdfc553c7acb7 [file] [log] [blame]
// +build OMIT
package main
import "fmt"
func main() {
pow := make([]int, 10)
for i := range pow {
pow[i] = 1 << uint(i)
}
for _, value := range pow {
fmt.Printf("%d\n", value)
}
}