Skip to content

Commit 3b330c9

Browse files
author
dima_los
committed
Added tutorial 10 - integers and floats
1 parent 7ad838e commit 3b330c9

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
$ourBurgers = 1 + 1 + 1;
4+
$myHalf = $ourBurgers / 2;
5+
var_dump($myHalf);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?php
2+
3+
$ourBurgers = 1 + 1 + 1;
4+
var_dump($ourBurgers);

0 commit comments

Comments
 (0)