www.pudn.com > FastScript15.rar > defparams.cpp


/****************************/ 
/* FastScript v1.0          */ 
/* Default params demo      */ 
/****************************/ 
 
void OK(int i = 1, j = 1) 
{ 
  ShowMessage(IntToStr(i) + " " + IntToStr(j)); 
} 
 
{ 
  OK(); 
  OK(0); 
  OK(1, 2); 
}