fabro/graph.fabro
Fabro bdadd162a2 init run
⚒️ Generated with [Fabro](https://fabro.sh)
2026-04-29 17:59:09 +00:00

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
}