Forth is a structured language. It does not have a GOTO. It does not have a compiler option to enable GOTO's.
What it does have is a set of words that can be used to construct the regular control structures, and some more complex constructs for those times when other languages send you racing for a GOTO.
The most common control flow words are;
These can be used to make;
I am indebted to Wil Baden for having made this relationship clear, and use his "flowgraphs" on this page to illustrate that mapping.
In the next section we look at how stackFlow diagrams can be combined with flowgraphs, and see some applications of control flow words.