package archive func attr(condition bool, whenMet string) string { if condition { return whenMet } else { return "" } }