package main import "runtime" func init() { if runtime.GOOS == "windows" { panic("Windows is not supported") } } func main() { }