This seems like a pretty simple problem, but I'm new to OCaml and need some help with the syntax. I'm representing the bit 0 as false and 1 as true. I need a recursive function that will take a positive integer and convert it to binary with the lower order bit at the beginning of the returning list. For instance, converting the integer 8 to binary results in 0001, therefore the function should return [false; false; false; true]. Another example: if the integer is 18, the binary is 01001, and thus the list will be [false; true; false; false; true]. I know I probably have to use mod and division by 2 somewhere...