Arc Forumnew | comments | leaders | submitlogin
1 point by starc 5950 days ago | link | parent

The rem function uses recursion internally (see arc.arc), so I'd say that it's something you'll get used to.

It's also worth knowing that you can use subseq as a substring function:

  arc> (let val "foox" (subseq val 0 (- (len val) 1)))
  "foo"