"Source: Text/System/IO.text";
"Line: 1343";
"Date: Thu Sep 25 14:47:43 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/System/IO.text, line: 1343
// Example: H3E11 ()
print "Example: H3E11";
ei := GetEchoInput();
SetEchoInput(true);
// no-test
letters := "abcdefghijklmnopqrstuvwxyz";
shiftcmd := func<n | Sprintf("tr 'a-z' '%o-za-%o'", letters[n+1], letters[n])>;
cmds := [ shiftcmd(n) : n in [1..13] ];
inputs :=
[
    "steeds", "pyic", "dolt", "pecan", "fizzy", "fusion", "inkier", "talk",
    "sleep", "cubed", "spots", "road", "nowhere"
];
Pipe(cmds, inputs);
SetEchoInput(ei);
