Changeset 7605

Show
Ignore:
Timestamp:
10/14/05 06:57:35 (3 years ago)
Author:
duff
Message:

* Rearranged examples/qotw directory structure and added a few new entries
* Added myself to the VICTUALS file :)

Files:
11 added
1 modified
5 moved

Legend:

Unmodified
Added
Removed
  • VICTUALS

    r5696 r7605  
    5252Saltines dropped into soup until soft 
    5353    http://use.perl.org/~merlyn/journal/24119 
     54 
     55tea, Dr Pepper, chili, crackers, any    Jonathan Scott Duff 
     56type of meat or cheese 
  • examples/qotw/006r/qotw-regular-06.p6

    r3174 r7605  
    55use v6; 
    66 
    7 # XXX! Pugs forgets about the splatty star if a type qualifier (e.g. Int) is 
    8 # specified! 
    9 sub format_number_list(*@_input) { 
    10   my @input = @_input; # no "is copy" yet 
     7sub format_number_list(*@input is copy) { 
    118  my @output; 
    129  while (@input) {