Alice: Better then you!
-
- graph TD;
- sq[Square shape]-->ci((Circle shape Начало));
-
+
+graph LR;
+ A[Start]-->B{a = '1,2'};
+ B-->|True|C[test = 1];
+ B-->|False|Z[Store];
+ C-->D{condition};
+ D-->|True|E[test = 2];
+ D-->|False|F[test = 3];
+ E-->G{condition2 = ''};
+ F-->G;
+ G-->|True|H[test = 4];
+ G-->|False|I[test = 5];
+ H-->J{condition3};
+ I-->J;
+ J-->|True|K[test = 6];
+ J-->|False|L;
+ K-->L[Print];
+ L-->M[Any Action];
+ M-->N[Any Other Action];
+ N-->Z;
+
+
Dot syntax (experimental)
digraph