in reply to array check help
print "empty" if !@NotFound; [download]
I like code that reads well. I was going to say print "empty" if not @NotFound but realized it's finally a good reason to use the unless keyword.
print "empty" unless @NotFound; [download]
--[ e d @ h a l l e y . c c ]