dec2bin n = if n<=1 then 1 else dec2bin(div n 2)*10+(mod n 2) main = do print(dec2bin 6)
1 2 10 42 11
110
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!