Base64 decode data: Difference between revisions

Content deleted Content added
→‎{{header|C++14}}: simplifications
Line 726: Line 726:
"Base64"
"Base64"
]</lang>
]</lang>
{{out}}
<pre>To err is human, but to really foul things up you need a computer.
-- Paul R. Ehrlich</pre>

=={{header|Nim}}==
<lang Nim>import base64

const Source = "VG8gZXJyIGlzIGh1bWFuLCBidXQgdG8gcmVhbGx5IGZvdWwgdGhpbmdzIHVwIHlvdSBuZWVkIGEgY29tcHV0ZXIuCiAgICAtLSBQYXVsIFIuIEVocmxpY2g="

echo Source.decode()</lang>

{{out}}
{{out}}
<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.