← Back to archive

Stdle #42 · numbers · 2026-07-18

What does this Go snippet output?

A past puzzle — fully playable. 4 attempts, hints on wrong guesses.

package main
import "fmt"
const (
_ = iota
A = iota * iota
B
C
)
func main() {
fmt.Println(A, B, C)
}
Numbers
4 attempts left

Answer & explanation