Skip to content

Instantly share code, notes, and snippets.

@aldrinmartoq
Last active November 8, 2017 00:29
Show Gist options
  • Save aldrinmartoq/6282d4c18e2b77d841ec0ee50d7ffdb0 to your computer and use it in GitHub Desktop.
Save aldrinmartoq/6282d4c18e2b77d841ec0ee50d7ffdb0 to your computer and use it in GitHub Desktop.
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
"realizar solicitud de compra" [shape=box];
"analizar presupuesto" [shape=box];
"realizar informe caso" [shape=box];
"tomar medidas" [shape=box];
"realizar cotización" [shape=box];
"inicio" ->
"realizar solicitud de compra" ->
"analizar presupuesto" ->
"¿presupuesto suficiente?" ->
"realizar informe caso" ->
"tomar medidas" ->
"¿se aprueba solicitud?" ->
"realizar cotización"
"¿presupuesto suficiente?" ->
"realizar cotización"
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment