Arc Forumnew | comments | leaders | submitlogin
1 point by akkartik 5110 days ago | link | parent

Is the code published? I think I missed that.


1 point by Pauan 5110 days ago | link

No, but it shouldn't be too difficult to add it to Anarki/pgArc/wart. In fact, I described a partial implementation (in Arc itself) here:

http://arclanguage.org/item?id=14255

Basically, it'd require changing things like (table) and (cons) so they return annotated functions, and then changing the built-ins (like keys, vals, car, etc.) to use the annotated functions. That's what that post is about: describing the core functions (keys, car, etc.) in Arc itself.

Oh, yeah, and change apply/eval so when they see something with type 'table or 'cons, they use the annotated functions too. I should be able to add this to py-arc without too much trouble.

-----