Skip to content

Commit

Permalink
Fixed math changes on index.php
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudynetwork committed Dec 5, 2013
1 parent cbb791f commit f731499
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
# Comment
/* multi line comment */

x=1;
y=2;
z=x+y
echo z;
$x=1;
$y=2;
$z=$x+$y
echo $z;
?>

</body>
Expand Down

0 comments on commit f731499

Please sign in to comment.