# 5.36 - builtin::indexed use v5.36; use experimental qw/ builtin /; my @a = qw/ apple orange /; say for builtin::indexed @a; __END__ 0 apple 1 orange