Base64 decode data: Difference between revisions

Content deleted Content added
m small ol fix
Added BaCon version.
Line 40: Line 40:
<pre>To err is human, but to really foul things up you need a computer.
<pre>To err is human, but to really foul things up you need a computer.
-- Paul R. Ehrlich</pre>
-- Paul R. Ehrlich</pre>

=={{header|BaCon}}==
Using the result from the [[Base64 encode data]] task as requested, but abbreviated in the code below.
<lang bacon>data$ = "AAABAAIAEBAAAAAAAABoBQAAJgAAACAgAAAAAAAAqA.......AABAAAAAQAAAAEAAAABAAAAAQAAAAE="
ico$ = B64DEC$(data$)
BSAVE ico$ TO "favicon.ico" SIZE LEN(ico$)
</lang>


=={{header|C}}==
=={{header|C}}==