10 lines
283 B
Plaintext
10 lines
283 B
Plaintext
# 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); |