default
{
state_entry()
{
llSetText("llBase64ToInteger test.\nClick to convert a base64 string to an integer.", <1,1,1>, 1.0);
}
touch_start(integer total_number)
{
string base64 = "1F5S9Q==";
llSay(0, "Input: " + base64);
llSay(0, "Output: " + (string)llBase64ToInteger(base64));
}
}