@startuml
start
if( condition ) then (yes)
:return false;
stop
endif
:doSomething1;
:doSomething2;
....
@enduml
As the above code shows, the execution of the code in the if block will cause the subsequent code to not be executed at all. Therefore, the statement should be written between else and endif, I think it can be placed directly outside endif. But in actual operation, I found that the sentence written in this way is not displayed. Is there any way?
Thanks a lot