Files
python/exercises/simple-cipher/simple_cipher.py

9 lines
120 B
Python
Raw Normal View History

class Cipher(object):
def __init__(self):
pass
class Caesar(object):
def __init__(self):
pass