Re: encoding neutral unpack
[p5sagit/p5-mst-13.2.git] / t / op / not.t
CommitLineData
a758b0b5 1#!./perl -w
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require './test.pl';
7}
8
9plan tests => 3;
10
11pass() if not();
12is(not(), 1);
13is(not(), not(0));