这一图表之间的区别:
...
if_statement : if condition then statement else statement end_if ;
...
为此:
...
if_statement : IF condition THEN statement ELSE statement END_IF;
...
IF : if ;
THEN: then ;
ELSE: else ;
END_IF: end_if ;
....
?
If there is any difference, as this impacts on performance ... Thanks