This isn't working, but I think it's progress.

This commit is contained in:
simon 2017-09-13 12:50:20 +01:00
parent 5dee093e65
commit 9661ad339a
13 changed files with 149 additions and 49 deletions

View file

@ -35,13 +35,13 @@ repl( FILE * in_stream, FILE * out_stream, FILE * error_stream,
fwprintf( out_stream, L"\n-> " );
}
/* OK, I think what's going wrong here is we're passing by
* value and I think we should be passing by reference.
/* OK, I think what's going wrong here is we're passing by
* value and I think we should be passing by reference.
* I'm not certain about that, and as it will be a really
* major change I'm going to think some more before making
* in */
// print( out_stream, lisp_eval(input, oblist, NULL));
print( out_stream, input );
* in */
print( out_stream, lisp_eval( input, oblist, NULL ) );
// print( out_stream, input );
fwprintf( out_stream, L"\n" );
fwprintf( error_stream, L"\neval {%d,%d}=> ", input.page,
input.offset );