↑ UP | Function interpret_all |
∇ Z←State interpret_all View;L;Max_L;C;Max_C;ZC;Row [1] Z←'' ◊ L←1 ◊ Max_L←↑⍴View [2] LOOP_L: ZC←'' ◊ C←1 ◊ Max_C←⍴Row←View[L;] [3] LOOP_C: ZC←ZC,State interpret_char Row[C] ◊ →(Max_C≥C←C+1)/LOOP_C [4] Z←Z,⊂ZC ◊ →(Max_L≥L←L+1)/LOOP_L ∇ |