Rot-13: Difference between revisions

Content deleted Content added
Logo (talk | contribs)
Add Haxe example
INGY (talk | contribs)
No edit summary
Line 6,910:
Tras decodificar : nowhere ABJURER
</pre>
 
 
=={{header|YAMLScript}}==
<syntaxhighlight lang="yaml">
!yamlscript/v0
 
s =: set(nil).into("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
m =: drop(26 s).concat(take(26 s)).zipmap(s _)
 
defn main(s):
l =: map(\(m %1 %1) s)
say: str(l*)
</syntaxhighlight>