- or download this
use strict;
use warnings;
...
my $ret = /9/g;
print "($ret)\n"
}
- or download this
use strict;
use warnings;
...
my $a = "";
print "(" . ~$a . ")\n";
}
- or download this
(4294967295)
(4294967294)
()
- or download this
use strict;
use warnings;
...
my $ret;
print ~ m/9/, "\n";
}
- or download this
4294967294
4294967295
- or download this
use strict;
use warnings;
...
print ~ ($ret = m/9/), "\n";
print "($ret)\n";
}
- or download this
4294967294
(1)
4294967295
()