base64decode - decodes a string encoded in base64 into a human-readable format
string base64decode( string source ) ;
source - the source base64-encoded string to decode
Decodes and returns a base64-encoded string into human-readable format.
printf( "%s", base64decode( "Rmx1ZmZPUyBpcyBncmVhdCEhIDop" ) ) ;
// Result: FluffOS is great!! :)
Compare your results with: https://www.base64decode.org/