Created
April 12, 2020 02:30
-
-
Save domingoladron/51762f3b7542dea09a6af44d93b72f97 to your computer and use it in GitHub Desktop.
PlantUML Simple Sequence Diagram
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml Simple Sequence Diagram | |
title Simple Sequence Diagram Example | |
actor Chris | |
boundary PlantUMLServer | |
Chris->PlantUMLServer: Edit PlantUML Code | |
PlantUMLServer->PlantUMLServer: Process Code | |
alt Chris' PlantUML Code is wrong | |
PlantUMLServer -> Chris: Syntax error, goofball! | |
else Chris' PlantUML is good | |
PlantUMLServer -> Chris: Here's your pretty picture | |
end | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment