Base64 decode data: Difference between revisions

Content deleted Content added
Scala contribution added.
Chunes (talk | contribs)
Add Factor
Line 242: Line 242:
To err is human, but to really foul things up you need a computer.
To err is human, but to really foul things up you need a computer.
-- Paul R. Ehrlich</pre>
-- Paul R. Ehrlich</pre>

=={{header|Factor}}==
<lang factor>USING: base64 io strings ;

"VG8gZXJyIGlzIGh1bWFuLCBidXQgdG8gcmVhbGx5IGZvdWwgdGhpbmdzIHVwIHlvdSBuZWVkIGEgY29tcHV0ZXIuCiAgICAtLVBhdWwgUi5FaHJsaWNo"
base64> >string print</lang>
{{out}}
<pre>
To err is human, but to really foul things up you need a computer.
--Paul R.Ehrlich
</pre>


=={{header|Go}}==
=={{header|Go}}==