<?php
class Bank {
private $money;
public function deposit($x) {
$this->money = $x;
}
public function show() {
echo $this->money;
}
}
$b = new Bank();
$a = 0;
$b->deposit("aaaaaaaaaa\n");
while ($a < 16) {
$b->show();
$a += 1;
}
?>
To embed this project on your website, copy the following code and paste it into your website's HTML: