Arc Forum
new
|
comments
|
leaders
|
submit
login
2 points
by
kens1
6068 days ago |
link
|
parent
Another broken thing is rem, which goes into an infinite loop if given a table:
arc> (rem t (obj a 1)) user break
As a consequence, keep, trues, and union all hang on a table argument.
3 points
by
almkglor
6068 days ago |
link
The problem here is 'coerce. 'rem attempts to coerce the object to a string, then coerce that string to a list, which it then passes to itself. however, coercing a table always returns a table. ^^
-----