Rot-13: Difference between revisions

Content deleted Content added
m Moved to Encryp cat
Rahul (talk | contribs)
Line 379:
 
Note that the framework will read the file lazily, which also provides buffering.
 
=={{header|Icon}}==
like javascript
 
procedure main()
local str, plain, rot13
rot13 := "nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM";
plain := "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
str := "ABJURER nowhere"
write(map(str, plain, rot13))
end
 
=={{header|J}}==