From 4ec2c28c1dc1e236ad4a178e5075b7eec44cf4a9 Mon Sep 17 00:00:00 2001 From: dcw <dcw> Date: Fri, 24 Nov 1989 16:18:01 +0000 Subject: [PATCH] added printing formats. --- test/cdata.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/cdata.in b/test/cdata.in index 4004b86..6362cbf 100644 --- a/test/cdata.in +++ b/test/cdata.in @@ -1,4 +1,4 @@ -intlist = null | cons( int first, intlist next ); -illist = null | cons( intlist first, illist next ); -idtree = null | leaf( char * id ) | node( idtree left, idtree right ); - +intlist = null "null" | cons( int first, intlist next ) 1 " , " 2; +illist = null "null" | cons( intlist first, illist next ) "[ " 1 " ] , " 2; +idtree = leaf( string id ) "leaf '" 1 "'" + | node( idtree left, idtree right ) "( " 1 " , " 2 " )"; -- GitLab