use 5.010; foreach (@array) { when (/linux/) { say "This is linux VM" } when (/Windows/) { say "This is Windows VM" } default { say "I have no idea what it is" } }