Beispiel #1
0
        public static void p01(WgContext Context, S02 Data)
        {
            // data
            Data.Sum     = 0;
            Data.Numbers = new List <int> ();

            // stacking sub-blocks
            Context.ProceedTo <S02> (p02);
            Context.ProceedTo(S02._while01.Generate(While_01_Check, While_01_Body));
        }
Beispiel #2
0
 public static void p02(WgContext Context, S02 Data)
 {
     System.IO.File.WriteAllText("out.txt", string.Join(" ", Data.Numbers));
 }