func is_perfect(n) { n.sigma == 2*n } for n in (1..10000) { say n if is_perfect(n) }