← Back to archive

Stdle #12 · classes · 2026-06-18

What does this Go snippet output?

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

package main
import "fmt"
func main() {
cfg := struct {
Debug bool
Level int
}{}
fmt.Println(cfg.Debug, cfg.Level)
}
Classes
4 attempts left

Answer & explanation