static void prmIsDefaultExample(Args _arg)
{
void fn(boolean b = true, int j = 42)
{
;
if (prmIsDefault(b) == 1)
{
print "First parameter is using the default value.";
}
else
{
print "First parameter is not using the default value.";
}
}
;
fn();
fn(false);
pause;
}