default
{
state_entry()
{
llSetText("llStringToBase64 test.\nClick to convert a string to base64.", <1,1,1>, 1.0);
}
touch_start(integer total_number)
{
string input = "You and your silly pies! o:";
llSay(0, "Input: " + input);
llSay(0, "Output: " + llStringToBase64(input));
}
}