Last active
December 18, 2015 03:48
-
-
Save dastanko/5720604 to your computer and use it in GitHub Desktop.
Шаблон на Ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CesarCipher | |
attr_writer :alphabet, :shift | |
def encode(plain_text) | |
# реализация | |
return encoded_text | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment