Exercise
lConstruct fromBinary, e.g.
lfromBinary([1, 0, 0, 1, 0, 1]) ==> 37
lConsiderations:
lDo we need an accumulator?
lCan it be done with tail-recursion?
lTry it and see.