Categories
Archives
Meta
Monthly Archives: November 2007
Decoding Morse Code With F# Comprehensions
In my last post I showed how to decode morse code in Python using list comprehensions. In this post I show how to do it in F# instead. First using list comprehensions: let codes = [(“A”,”.-”); (“B”,”-…”); (“C”,”-.-.”); (“D”,”-..”); (“E”,”.”); … Continue reading
Posted in Coding, F#, General, Python
5 Comments