#!/usr/bin/pugs use v6; use Test; plan 4; my $run = 1; sub isfive (*@args) { is(@args[0], 5, "First arg is 5, run " ~ $run++) } isfive(5) and isfive(5); isfive 5 and isfive 5;