Help for this page

Select Code to Download


  1. or download this
    (1, 2, A, 4)
    (3, 4, A, 5)
    ...
    (1, 2, C, 2)
    (2, 3, C, 2)
    (1, 3, C, 1)
    
  2. or download this
    A
    1, 2, A, 4
    ...
    1, 2, C, 2
    2, 3, C, 2
    1, 3, C, 1
    
  3. or download this
    [
      { cat => 'A', list => [{1, 2, A, 4},{3, 4, A, 5}]}, 
      { cat => 'B', list => [{5, 5, B, 2},{;6, 2, B, 3}]},
      { cat => 'C', list => [{1, 2, C, 2},{2, 3, C, 2},{1, 3, C, 1}]}
    ]
    
  4. or download this
    <% FOREACH catrec IN reclist %>
       <% catrec.cat %>
    ...
          <% rec %>
       <% END %>
    <% END %>