RosettaCodeData/Task/Caesar-cipher/Zkl/caesar-cipher-2.zkl
2017-09-25 22:28:19 +02:00

6 lines
194 B
Text

text:="The five boxing wizards jump quickly";
N:=3;
code:=caesarCodec(text,N);
println("text = ",text);
println("encoded(%d) = %s".fmt(N,code));
println("decoded = ",caesarCodec(code,N,False));