Added more unit tests.
This commit is contained in:
parent
8026138b9c
commit
6eab3a531a
9 changed files with 60 additions and 7 deletions
|
|
@ -29,7 +29,7 @@ void print( FILE* output, struct cons_pointer pointer) {
|
|||
}
|
||||
fputc( ')', output);
|
||||
} else if ( check_tag( pointer, INTEGERTAG)) {
|
||||
fprintf( output, " %ld", cell.payload.integer.value);
|
||||
fprintf( output, "%ld", cell.payload.integer.value);
|
||||
} else if ( check_tag( pointer, NILTAG)) {
|
||||
fprintf( output, "NIL");
|
||||
} else if ( check_tag( pointer, REALTAG)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue