Skip to content
Snippets Groups Projects
Commit 4ec2c28c authored by dcw's avatar dcw
Browse files

added printing formats.

parent b4bbfc36
No related branches found
No related tags found
No related merge requests found
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 " )";
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment