Commit | Line | Data |
---|---|---|
8d063cd8 LW |
1 | #!./perl |
2 | ||
3 | # $Header: base.lex,v 1.0 87/12/18 13:11:51 root Exp $ | |
4 | ||
5 | print "1..4\n"; | |
6 | ||
7 | $ # this is the register <space> | |
8 | = 'x'; | |
9 | ||
10 | print "#1 :$ : eq :x:\n"; | |
11 | if ($ eq 'x') {print "ok 1\n";} else {print "not ok 1\n";} | |
12 | ||
13 | $x = $#; # this is the register $# | |
14 | ||
15 | if ($x eq '') {print "ok 2\n";} else {print "not ok 2\n";} | |
16 | ||
17 | $x = $#x; | |
18 | ||
19 | if ($x eq '-1') {print "ok 3\n";} else {print "not ok 3\n";} | |
20 | ||
21 | $x = '\\'; # '; | |
22 | ||
23 | if (length($x) == 1) {print "ok 4\n";} else {print "not ok 4\n";} |