Skip to content

Instantly share code, notes, and snippets.

@tallpeak
Last active May 3, 2021 04:00
Show Gist options
  • Save tallpeak/fa81be9822472f63aa6d0f63781be0b4 to your computer and use it in GitHub Desktop.
Save tallpeak/fa81be9822472f63aa6d0f63781be0b4 to your computer and use it in GitHub Desktop.
-- ff is our foldingfunction
-- (c,s) is the accumulator argument, which consists of an Int and a String
-- c accumulates bits when 0 or 1 is encountered
-- when 8 bits are accumulated, they are prepended to the string s
-- ch is the next character being passed from fold.
ff (c,s) ch =
if ch=='0' || ch=='1' then
let c2=c*2+(fromEnum ch - 48) in
if c2>255 then (1,toEnum(c2-256):s)
else (c2,s)
else (c,s)
decbin = reverse . snd . foldl ff (1,"")
main = do
putStrLn "Enter some binary digits to decode into ASCII:"
ln <- getLine
putStrLn $ decbin ln
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment