James Bond

list name = ["James","Bond"];

default
{
    state_entry()
    {
        llSay(0, llList2String(name,1) + ", " +  llList2String(name,0) + " " +  llList2String(name,1));
    }
}
Vote up this code2