Help for this page

Select Code to Download


  1. or download this
    $a=2;
  2. or download this
    print $a+$b   #arithmetic operator prints 5
    print $a.$b   #string operator prints 2 plus the three or 23
    print $a*$b   #arithmetic operator prints 6
    print $a x $b #string operators prints $a $b times or 2 three times. i
    +e 222