index
:
sonsi
Stupid and Obvious Non-recursive Scheme Interpreter
log msg
author
committer
range
faster_fetch
gc
gc_cyc
gc_imp
gc_sweep
master
new_ext
numeric_types
restructure
skip_removal
tail_recursion
about
summary
refs
log
tree
commit
diff
path:
root
/
main.cpp
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'main.cpp')
-rw-r--r--
main.cpp
2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 8f7683f..221941d 100644
--- a/
main.cpp
+++ b/
main.cpp
@@ -19,7 +19,7 @@ int main() {
{
Pair *tree = ast->absorb(tk);
if (!tree) break;
- fprintf(stderr, "Ret> $%d = %s\n", rcnt++,
+ fprintf(stderr, "Ret> $%d = %s\n", rcnt++,
eval->run_expr(tree)->ext_repr().c_str());
}
catch (GeneralError &e)