The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
<?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

?>