how to fix WWW(highscore_url) ?

it sees “hs_post” as an unknown identifier.
how can i fix this?

function bambu () {
   
        blah..
        // Post the URL to the site and create a download object to get the result.
        hs_post = WWW(highscore_url);
        blah..
   
}

It seems you are using UnityScript, as such the syntax would be:

var www: WWW = new WWW(url);

But you find that in the documentation, linked by LeftyRighty.

thank you guys.