Untitled

 avatar
user_8125782
dart
9 days ago
377 B
2
Indexable
class Mobil{
  String tipe;
  int year;
  int price;
   
   Mobil(this.tipe, this.year,this.price);

  void introduce(){
    print('inilah dia mobil $tipe tahun pengeluaran $year dengan harga $price');
  }
}

void main (){
  Mobil mobil = Mobil("Avanja", 2001,400000);
  Mobil mobil2 = Mobil("Tayo", 2014,500000);

  mobil.introduce();
  mobil2.introduce();
}
Leave a Comment