(35 lines)
4 Convert a C string to Text.8 The C string as a Text.13 The C string.15 assert CString("Hello").as_text() == "Hello"20 Join a list of C strings together with a separator.24 A C string of the joined together bits.29 The C joiner used to between elements.33 A list of C strings to join.35 assert CString(",").join([CString("a"), CString("b")]) == CString("a,b")