The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<?php

function test()
{
    $string = 'hello';
    $string = 'hello'; // Set string to hello.
    // Valid comment.
}

function test() // This is a function
{

}//end test()


class TestClass
{
    public $good = true; // Indeed.

}//end class

?>