sub fib (Int $n) { $n < 2 or state @seen[$n] //= fib($n-1) + fib($n-2); }