Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[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 form
form: native [ "Converts a value to a string." value "The value to form" ]
>> source to-string
to-string: func ["Converts to string value." value "Value to convert"][to string! :value] ~H