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

Are you trying to insert a literal '@'? You need to escape it as '@@'. I believe racket has some support for variable interpolation that is triggered by '@', and the 'eof' error is because it's trying to read a variable name after the @, but there's nothing but a space.


4 points by rocketnia 4497 days ago | link

For the record, this doesn't have anything to do with Racket. This is atstrings, a feature of Arc.

Atstrings is off by default in plain Arc 3.1, but it's activated by the line (declare 'atstrings t), and news.arc includes that line for its own purposes.

-----

1 point by lark 4498 days ago | link

Escaping as '@@' worked, thanks.

-----