tags:

views:

66

answers:

1

How to convert a list to a string in Oz?

I have a list of characters I need to convert to a string and I didn't see any concatenation operator in the Oz documentation.

+1  A: 

A list of characters is a string in oz. [102 111 111] is the same as "foo".

sepp2k