Activity-Beta : Bug with the label of "ELSE" in IF-structure

0 votes
asked Jun 15, 2015 in Bug by MAV (460 points)
Hello guys !

Just to report a bug with the IF structure  : it is not possible to put parenthesis in the label of the Else

if(a = ?)then(a = (b-c))

else( a = (b+c))

endif

Thank you!

1 Answer

0 votes
answered Aug 30, 2021 by The-Lu (64,760 points)

It is now done...

@startuml
if (a = ?) then (a = (b-c))
  :a = (b-c);
else( a = (b+c))
  :a = (b+c);
endif
@enduml

...