Help for this page

Select Code to Download


  1. or download this
        (3,4,5) | (7,8,9)
    === ((3,4),5) | ((7,8),9)
    ...
    === 5 | (8,9)
    === 5 | 9
    === 13
    
  2. or download this
    my @list2 = @{ $c->bbox('all') || [ 1,2,3 ] };
    
  3. or download this
    my @list2 = $c->bbox('all');
    @list2 = (1,2,3) if !@list2;