RosettaCodeData/Task/Caesar-cipher/Zkl/caesar-cipher-2.zkl
2023-07-01 13:44:08 -04: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));