Help for this page
$x = '10+4'; print( "$x" ); # 10+4, not 14
$x = '10+4'; print( $x ); # 10+4, not 14
$x = '10+4'; print( eval $x ); # 14