Bifid cipher: Difference between revisions

→‎{{header|jq}}: add fourth example
(→‎{{header|jq}}: add fourth example)
Line 632:
"ATTACKATDAWN",
"FLEEATONCE",
"ATTACKATDAWN",
"The invasion will start on the first of January"
];
Line 640 ⟶ 641:
| encrypt(polys[$i]) as $encrypted
| ($encrypted | decrypt(polys[$i] )) as $decrypted
| ("Message : \(.)",
"Encrypted : \($encrypted)",
"Decrypted : \($decrypted)" ) ;
"" ;
 
task
Line 648 ⟶ 650:
{{output}}
Same as for [[#Wren]].
 
 
=={{header|Julia}}==
2,460

edits