digraph {
"Hey" [shape=circle]
"Welcome to graphiz" [shape=box]
"You are new" [shape=diamond]
"How are you" [shape=box]
"It's super easy" [shape=box]
"write plain english thats code like" [shape=box]
"wanna do a condition" [shape=diamond]
"editing"[shape=diamond]
"Hey" -> "Welcome to graphiz" -> "You are new"
"You are new" -> "It's super easy"[label=True]
"You are new" -> "How are you"[label=False]
"It's super easy" -> "write plain english thats code like" -> "wanna do a condition"
"wanna do a condition" -> "Just write an if"[label=True]
"wanna do a condition" -> "editing"[label=False]
"Just write an if" -> "editing"
"editing" -> "How are you"[label=False]
"editing" -> "see stuff update via entr"[label=True]
"see stuff update via entr" -> "editing"
"How are you" -> "goodbye"
}
Now I want to study up on parsing to build my own ast to
dot generator