Functions Learning Mode

What would you replace ??????? with, below, to make the string Hello, World! be displayed?

                       function myfunction() {
                           /* ??????? */
                           echo $string;
                       }
                       myfunction("Hello, World!");