Bifid cipher: Difference between revisions

Content added Content deleted
(Added Quackery.)
m (→‎{{header|Quackery}}: now compliant with task requirements)
Line 1,624: Line 1,624:


say "Using tasksquare:" cr
say "Using tasksquare:" cr
$ "Attack at dawn." dup echo$ say " -> "
$ "Attack at dawn." dup echo$ say " -> "
tasksquare encrypt dup echo$ say " -> "
tasksquare encrypt dup echo$ say " -> "
tasksquare decrypt echo$
tasksquare decrypt echo$
cr cr
cr cr
say "Using wikisquare:" cr
say "Using wikisquare:" cr
$ "Flee at once." dup echo$ say " -> "
$ "Flee at once." dup echo$ say " -> "
wikisquare encrypt dup echo$ say " -> "
wikisquare encrypt dup echo$ say " -> "
wikisquare decrypt echo$
wikisquare decrypt echo$
cr cr
cr cr
say "Using ducksquare:" cr
say "Using ducksquare:" cr
$ "Soft quacks bring peace." dup echo$ say " -> "
$ "The invasion will start on the first of January." dup echo$ cr say " -> "
ducksquare encrypt dup echo$ say " -> "
ducksquare encrypt dup echo$ cr say " -> "
ducksquare decrypt echo$</syntaxhighlight>
ducksquare decrypt echo$
</syntaxhighlight>


{{out}}
{{out}}
Line 1,647: Line 1,648:


Using ducksquare:
Using ducksquare:
The invasion will start on the first of January.
Soft quacks bring peace. -> MOQQCXIYDUVCUNZANWPO -> SOFTQUACKSBRINGPEACE
-> EPGCNGINDORETNOMLLCNVNPWTIQXIOMVAGOANPY
Stack empty.
-> THEINVASIONWILLSTARTONTHEFIRSTOFIANUARY
</pre>
</pre>