summaryrefslogtreecommitdiff
path: root/t/base/if.t
diff options
context:
space:
mode:
authorLarry Wall <lwall@netlabs.com>1991-03-21 00:00:00 +0000
committerLarry Wall <lwall@netlabs.com>1991-03-21 00:00:00 +0000
commitfe14fcc35f78a371a174a1d14256c2f35ae4262b (patch)
treed472cb1055c47b9701cb0840969aacdbdbc9354a /t/base/if.t
parent27e2fb84680b9cc1db17238d5bf10b97626f477f (diff)
downloadperl-fe14fcc35f78a371a174a1d14256c2f35ae4262b.tar.gz
perl 4.0.00: (no release announcement available)perl-4.0.00
So far, 4.0 is still a beta test version. For the last production version, look in pub/perl.3.0/kits@44.
Diffstat (limited to 't/base/if.t')
-rw-r--r--t/base/if.t11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/base/if.t b/t/base/if.t
new file mode 100644
index 0000000000..6965ef5141
--- /dev/null
+++ b/t/base/if.t
@@ -0,0 +1,11 @@
+#!./perl
+
+# $Header: if.t,v 4.0 91/03/20 01:49:03 lwall Locked $
+
+print "1..2\n";
+
+# first test to see if we can run the tests.
+
+$x = 'test';
+if ($x eq $x) { print "ok 1\n"; } else { print "not ok 1\n";}
+if ($x ne $x) { print "not ok 2\n"; } else { print "ok 2\n";}