We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7040968 commit e82cdb5Copy full SHA for e82cdb5
1 file changed
Naggum.Runtime/Reader.cs
@@ -92,7 +92,7 @@ private static Object ReadList(StreamReader reader)
92
in_list = false;
93
}
94
95
- list = new Cons(list_stack.Pop(), list);
+ while (list_stack.Count > 0) list = new Cons(list_stack.Pop(), list);
96
return list;
97
98
0 commit comments