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

// Some code goes here.

// This comment contains # multiple
// hash signs (#).

/*
 * Here is a small function comment.
 */
function test()
{
    // Some code goes here.

    # This comment is banned.

}//end test()

/*
    A longer comment goes here.
    It spans multiple lines.
*/

# This is a long comment
# that is banned.

?>