aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/assets/ScriptsAssetSet/llBase64ToString.lsl
blob: f8d4978f9894d12e205fe571d79310caf2ff79b6 (plain)
1
2
3
4
5
6
7
8
default
{
    state_entry()
    {
        string test = llBase64ToString("U2VjcmV0Ok9wZW4=");
        llOwnerSay(test);
    }
}