Caesar cipher: Difference between revisions

m
BASIC256 and BBC BASIC moved to the BASIC section.
m (BASIC256 and BBC BASIC moved to the BASIC section.)
Line 923:
 
</syntaxhighlight>
{{in}}
 
<pre>
{{out}} (input: caesar_cipher -e 13 "Hello World!"):
</pre>
{{out}}
<pre>
Uryyb Jbeyq!
</pre>
 
{{in}}
{{out}} (input: caesar_cipher -d 13 "Uryyb Jbeyq!"):
<pre>
{{out}} (input: caesar_cipher -d 13 "Uryyb Jbeyq!"):
</pre>
{{out}}
<pre>
Hello World!
</pre>
 
=={{header|BASIC256}}==
=={{header|BBC BASIC}}==
==={{header|BASIC256}}===
<syntaxhighlight lang="text">
# Caeser Cipher
Line 976 ⟶ 985:
MY HOVERCRAFT IS FULL OF EELS.
</pre>
 
=={{header|BBC BASIC}}==
==={{header|BBC BASIC}}===
<syntaxhighlight lang="bbcbasic"> plaintext$ = "Pack my box with five dozen liquor jugs"
PRINT plaintext$
512

edits