6 lines
194 B
Text
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));
|