You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In tutorial http://www.arclanguage.org/tut.txt, there is a function tostring that is like do except any output generated during the evaluation of its body is sent to a string, which is returned as the value of the whole expression. For example, the expression
(tostring
(prn "domesday")
(prn "book"))
should evaluate to string "domesday\nbook\n"
The text was updated successfully, but these errors were encountered:
In tutorial http://www.arclanguage.org/tut.txt, there is a function
tostring
that is likedo
except any output generated during the evaluation of its body is sent to a string, which is returned as the value of the whole expression. For example, the expressionshould evaluate to string
"domesday\nbook\n"
The text was updated successfully, but these errors were encountered: