Bump up rawstr4c version to v0.2.1.0

This commit is contained in:
Aoran Zeng
2025-07-16 23:10:52 +08:00
parent 7669a0417b
commit f62e3f3397
2 changed files with 3 additions and 3 deletions

View File

@@ -303,8 +303,8 @@ class Parser {
say "====== Sections ======";
for @!sections.kv -> $i, $section {
my $title = $section.title || "(Root)";
my $has-config = $section.configblock.keys ?? "" !! "";
my $has-code = $section.codeblock ?? "" !! "";
my $has-config = $section.configblock.keys ?? "[Has Config]" !! "[NO Config]";
my $has-code = $section.codeblock ?? "[Has Code]" !! "[NO Code]";
say " [$i] Level {$section.level}: $title - $has-config, $has-code";
}
}