Standard library ################ Comefrom0x10 comes with a suprisingly complete standard library: it includes everything you need to solve literally any computable problem. .. data:: car Grabs the first character of a string:: car = 'abc' car # prints 'a' .. data:: cdr Grabs the rest of the string:: cdr = 'abc' cdr # prints 'bc' .. data:: itoa Converts a number that represents a Unicode code point to a string:: itoa = 65 itoa # prints 'A' .. data:: atoi The opposite of ``itoa``. Together, they can be used to represent lists of numbers as strings.