View Single Post
  #17  
Old 10-12-2008, 02:14 AM
Programmer Programmer is offline
Coder
Programmer's Avatar
Join Date: Jan 2008
Location: -78.464422, 106.837328
Posts: 449
Programmer has a spectacular aura aboutProgrammer has a spectacular aura about
Send a message via AIM to Programmer Send a message via MSN to Programmer Send a message via Yahoo to Programmer
Quote:
Originally Posted by Inverness View Post
How dare you place any code outside of a function
And you're making global variables.
Zzz...

PHP Code:
function onCreated()
{
    
temp.dataSet = {16425820100541000523};
    
    echo(
temp.dataSet);
    
temp.dataSet selectionSort(temp.dataSet);
    echo(
temp.dataSet);
    
    
temp.dataSet null;
    
temp.dataSet.destroy();
}

function 
selectionSort(temp.data)
{
    for (
0temp.data.size() - 1a++)
    {
        for (
1temp.data.size(); b++)
        {
            if (
temp.data[b] < temp.data[a])
            {
                
result temp.data[b];
                
temp.data[b] = temp.data[a];
                
temp.data[a] = result;
            }
        }
    }
    
    return 
temp.data;

__________________
- Iᴀɴ Zɪᴍᴍᴇʀᴍᴀɴ
Reply With Quote