From 33123b639090e1785ed39a325917555a8cd8b664 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 17 Sep 2009 06:06:55 +0200 Subject: [PATCH] 'make test' now passes. Now we need *good* tests --- t/00-sanity.t | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/t/00-sanity.t b/t/00-sanity.t index 3121d01..023995f 100644 --- a/t/00-sanity.t +++ b/t/00-sanity.t @@ -1,6 +1,4 @@ -# This just checks that the basic parsing and call to builtin say() works. -say '1..4'; -say 'ok 1'; -say 'ok ', 2; -say 'ok ', 2 + 1; -say 'ok', ' ', 4; +# This just checks that the basic parsing and call to builtin print() works +print "1..2\n"; +print "ok 1\n"; +print "ok ". 2 . "\n";