Hi guys,
Is it possible to put the labels at the if and not at the endif?
I would like to use this syntax to be able to write easily multi-lines labels.
Thank you !
@startuml
start
if()
-> True;
else
-> False;
endif
stop
@enduml
result : here
(--------)
Have you tried this approach?:
if(result) then (successful result multiline label) :Do something; else (error) :Throw an error; stop endif