Skip to content

Instantly share code, notes, and snippets.

@rhythmus
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rhythmus/ef926ee1f3dadf269d6e to your computer and use it in GitHub Desktop.
Save rhythmus/ef926ee1f3dadf269d6e to your computer and use it in GitHub Desktop.
Test Flowchart

UML diagrams

You can also render sequence diagrams like this:

Alice->Bob: Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!

And flow charts like this:

st=>start: Start
e=>end
op=>operation: My Operation
cond=>condition: Yes or No?

st->op->cond
cond(yes)->e
cond(no)->op

Note: You can find more information:

  • about Sequence diagrams syntax [here][7],
  • about Flow charts syntax [here][8].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment