Sha256: a69d7338528ef512cda4f1eda164ca28d54b701357304026734efb8d168aad0b
Contents?: true
Size: 396 Bytes
Versions: 59
Compression:
Stored size: 396 Bytes
Contents
module Cipher (caesarDecode, caesarEncode, caesarEncodeRandom) where caesarDecode :: String -> String -> String caesarDecode = error "You need to implement this function." caesarEncode :: String -> String -> String caesarEncode = error "You need to implement this function." caesarEncodeRandom :: String -> IO (String, String) caesarEncodeRandom = error "You need to implement this function."
Version data entries
59 entries across 59 versions & 1 rubygems