1BEGIN 2{ 3 @[8 - 1, "test"] = count(); 4 printf("=> Print with one element\n"); 5 print(@); 6} 7 8END 9{ 10 @[7, "test"] = count(); 11 printf("=> Print all map:\n"); 12 print(@); 13} 14