conventions.io

Tech Challenge

2026-07-23

🦫

Daily Tech Challenge

Go

medium
Question 1 of 5

What does this Go program print?

Example
package main

import "fmt"

func check(n int) bool {
	fmt.Print(n, " ")
	return n > 0
}

func main() {
	if check(1) || check(2) {
		fmt.Println("done")
	}
}

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