source: trunk/essentials/dev-lang/perl/lib/Test/t/qr.t@ 3298

Last change on this file since 3298 was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 199 bytes
Line 
1#!./perl -w
2
3use strict;
4BEGIN {
5 if ($] < 5.005) {
6 print "1..0\n";
7 print "ok 1 # skipped; this test requires at least perl 5.005\n";
8 exit;
9 }
10}
11use Test; plan tests => 1;
12
13ok 'abc', qr/b/;
Note: See TracBrowser for help on using the repository browser.