Hello. I want to convert any Int in a range 0:63 to its base64 equivalent.
The function f(i) would be:
f(i::Int64) =>
0 => A
1 => B
32 => g
63=> /
If there are choices I prefer low RAM and human readability.
(Edit:I guess the output might be a char or string)
Thanks
Aldo