mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
11 lines
275 B
Text
11 lines
275 B
Text
digraph Hello {
|
|
graph [goal="Say hello and demonstrate a basic Fabro workflow"]
|
|
rankdir=LR
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
greet [label="Greet", prompt="Add a haiku to the README"]
|
|
|
|
start -> greet -> exit
|
|
}
|