use v6;
use Test;
plan *;
my @array = (1, 2, 2, 3, 4, 5, 5, 5, 5, 6, 7, 8);
ok([<=] @array, "array is sorted properly");
done_testing;
If anyone has a notion why this fails, I'm all ears. I'd love to clear this up.
use v6;
use Test;
plan *;
my @array = (1, 2, 2, 3, 4, 5, 5, 5, 5, 6, 7, 8);
ok([<=] @array, "array is sorted properly");
done_testing;
PIONEER file. It lists four conventions that need to be followed, the first of which is creating a deps.proto file. Vector doesn't have any dependencies; I'm not sure if having an empty file or no file is a better way of indicating that. I'm guessing an empty file, as that suggests that I have at least considered it. (Or better yet, with a comment indicating there are no dependencies?)PIONEER indicates that if there is no Makefile.PL or Configure.pl file, it just assumes the build worked, which sounds perfect for my purposes.make test. If there isn't, it will try to run prove recursively on the t/ directory. Assuming it's smart enough to run prove with the system's working Rakudo, this should work just fine with what we already have. Errr, assuming the LIB paths are set up properly.prove test figure out the paths automatically? And if I switch over to that system, should it be lib/Vector.pm or lib/Math/Vector.pm or something like that?