<?php

    $k = 6+5;
    echo $k; // correct
    Echo $k; // correct
    
    // Comment example 1
    
    #  Comment example 2
    
    /*
        Comment off a section of code
    */
    
?>