fn isPowerOf10(n_: u128) bool
fn isPowerOf10(n_: u128) bool { var n = n_; while (n != 0) : (n /= 10) { if (n % 10 != 0) return false; } return true; }