conventions.io

Tech Challenge

2026-07-09

🦫

Daily Tech Challenge

Go

medium
Question 1 of 5

What does this program print?

Example
package main

import "fmt"

const (
	A = iota
	B
	C = iota * 10
	D
)

func main() {
	fmt.Println(A, B, C, D)
}

Thursday, July 9, 2026 · A new challenge drops every day