Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

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);