Would it be much effort to add for loop control flows and simple lists to the agrammon model code?
It would be nice to be able to loop over the application techniques and adding up its results.
Simple example:
my $res = 0;
for 'bc', 'th', 'ts' -> $tech {
$res += $TE->{'app_tech_' . $tech};
}