Skip to content

Commit 406141d

Browse files
committed
added new code
1 parent 103aac3 commit 406141d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Prami.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
$x = 6;
3+
$y = 4;
4+
echo $x + $y;"\n";
5+
6+
7+
$a = 20;
8+
$b = 5;
9+
echo $a - $b;"\n";
10+
11+
$p = 30;
12+
$r = 25;
13+
echo $p * $r;"\n";
14+
15+
$x = 7;
16+
$y = 3;
17+
echo $p / $r;
18+
?>

0 commit comments

Comments
 (0)