in reply to Re: Get element count of CONSTANT list (aref))
in thread [SOLVED] Get element count of CONSTANT list (aref))

Don't know how I didn't follow that path, probably just because I was focused for so long on it.

use warnings; use strict; use feature 'say'; use constant STEPPER_SEQUENCE => [ [qw(1 0 0 1)], [qw(1 0 0 0)], [qw(1 1 0 0)], [qw(0 1 0 0)], [qw(0 1 1 0)], [qw(0 0 1 0)], [qw(0 0 1 1)], [qw(0 0 0 1)], ]; use constant STEP_COUNT => 0+@{ STEPPER_SEQUENCE() }; say STEP_COUNT;

Output:

8

Works perfectly! Thanks once again haukex!

-stevieb