Hi Russ, you wrote:

>>> print to-string ((to-integer "12345") + (to-integer "23456"))

You don't need the to-string since print accepts any-type:
>> print (to-integer "12345") + (to-integer "23456")
35801

Reply via email to