We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddedf86 commit 3b660b1Copy full SHA for 3b660b1
arc.cpp
@@ -1834,7 +1834,8 @@ A symbol can be coerced to a string.
1834
}
1835
case T_CLOSURE:
1836
{
1837
- s = "#<closure>";
+ atom a2 = make_cons(sym_fn, make_cons(a.as<struct closure>().args, a.as<struct closure>().body));
1838
+ s = "#<closure>" + to_string(a2, 1);
1839
break;
1840
1841
case T_MACRO:
arc.h
@@ -34,7 +34,7 @@
34
#endif
35
36
namespace arc {
37
- constexpr auto VERSION = "0.22";
+ constexpr auto VERSION = "0.23";
38
39
enum type {
40
T_NIL,
0 commit comments