Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Last active December 3, 2025 14:01
Show Gist options
  • Select an option

  • Save pablocattaneo/9695deb8988cdc82c497041cf9b817bb to your computer and use it in GitHub Desktop.

Select an option

Save pablocattaneo/9695deb8988cdc82c497041cf9b817bb to your computer and use it in GitHub Desktop.
// https://go.dev/tour/moretypes/16
// https://chatgpt.com/share/69304294-58ac-8006-9cde-961288946986
package main
import "fmt"
var pow = []int{1, 2, 4, 8, 16, 32, 64, 128}
func main() {
for i, v := range pow {
fmt.Printf("2**%d = %d\n", i, v)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment