#03 Dart Function

dartpad.dev

what is function?

function is a block of code designed to perform a particular task.

How to write function?

void sayhi() {
print("hi ali");
}

👉 sayhi();

Function return

int myfunc() {
return 5*2;
}

👉 print( myfunc() );

Function Parameter && Argument

double myfunc(double height , double width ) {
  return height * width ;
}

👉 print(   myfunc(3.7*2);   )
تنظيم الكود قليلاً :
double myfunc(double height , double width ) {
  return height * width ;
}

👉 double result = myfunc(3.7,2);
print( result );
😡
انت مشغل الـ AdBlock !!

ياريت تقفله لوسمحت 😊 😊

تنبيه هام ✋

إذا كانت الإعلانات مزعجة بالنسبة لك، فيُمكنك التبرع ب50$ وسيتم إيقاف الإعلانات لمدة شهر لجميع زوار الموقع 🧡 ويُمكنك التواصل معنا عن طريق صفحة الفيس بوك