if and else if are they counted differently when it comes to number of Deluge statement executions

if and else if are they counted differently when it comes to number of Deluge statement executions

Hi,

I think i read this somewhere need to verify maybe i understood wrong
when counting number of deluge statements executed

would this be different

1)
if ( a==b)
do b

if (a ==c)
do c

2) if (a==b)
do b

else if (a==c)
do c

thanks ...