Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Kucing {
- public $lucu = true;
- public $warna;
- public function __construct($warna) {
- $this->warna= $warna;
- }
- public function meong(){
- return "Meong...!!";
- }
- public function menyapa(){
- return "Hai, saya si $this->warna.";
- }
- }
- $putih = new kucing("putih");
- $hitam = new kucing("hitam");
- echo $hitam->menyapa();
- echo $putih->meong();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement