13.03.2010, 17:58
Almost all languages are.
Java:
if(....)
{
// things here //
// Java don't need returns. //
}
Pawn:
if(....)
{
// things here //
return 1;
}
and other languages..
Java:
if(....)
{
// things here //
// Java don't need returns. //
}
Pawn:
if(....)
{
// things here //
return 1;
}
and other languages..