# Automatically generated; edit in Sphinx source code, not here. module Example; import MyLibrary; const data = "Hello, world!"; global encrypted = MyLibrary::rot13(data); global decrypted = MyLibrary::rot13(encrypted); print "'%s' -> '%s' -> '%s'" % (data, encrypted, decrypted);