//go:build !windows package main // fatalBox is Windows-only; elsewhere the terminal carries the message. func fatalBox(title, text string) { println(title + ": " + text) }