← Back to archive

Stdle #81 · strings · 2026-08-26

What does this Go snippet output?

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

package main
import "fmt"
func main() {
s := "AB" + string(rune('A'+2))
fmt.Println(s)
}
Strings
4 attempts left

Answer & explanation