I have an Int that i want to split into it's individual numbers which ideally would be contained in a list, which i can then process further. So i would like something like this:
split 245
--will then get an list containing [2,4,5]
Is anyone familiar with such a function?