Arc Forumnew | comments | leaders | submitlogin
1 point by shader 4843 days ago | link | parent

Yeah, I never use arc's tagging either, because it just isn't useful for anything other than what pg designed it for, namely differentiating between functions and macros.

Hopefully I'll be able to get my hack onto anarki soon so you guys can look at it and tell me if its an improvement at all.



3 points by akkartik 4843 days ago | link

Types are useful in proportion to the number of primitives that can handle them.

That's basically why I built defgeneric; at this point functions len, iso, keep, some, rem, all are all generics, which means they can be extended for new types. (http://github.com/akkartik/arc)

In wart the type system's baked in pretty early on, and I try to use it everywhere I possibly can. (http://github.com/akkartik/wart)

-----

1 point by evanrmurphy 4843 days ago | link

From your description at http://arclanguage.org/item?id=13474, I definitely think it's a step in the right direction. It has already influenced my ideas about how to implement typing in upcoming toy interpreters.

Look forward to seeing your code.

-----