[REBOL] 'to-string vs 'form
From: hallvard::ystad::helpinhand::com at: 24-Oct-2001 9:39
Can anyone tell me the difference between 'to-string and 'form?>> source formform: native [ "Converts a value to a string." value "The value to form" ]>> source to-stringto-string: func ["Converts to string value." value "Value to convert"][to string! :value] ~H