mirror of
https://github.com/github/codeql.git
synced 2026-01-02 17:26:44 +01:00
12 lines
121 B
Plaintext
12 lines
121 B
Plaintext
digraph
|
|
{
|
|
start -> iEven;
|
|
start -> iOdd;
|
|
iEven -> end;
|
|
iOdd -> jEven;
|
|
iOdd -> jOdd;
|
|
jEven -> end;
|
|
jOdd -> end;
|
|
}
|
|
|