Changeset 7605
- Timestamp:
- 10/14/05 06:57:35 (3 years ago)
- Files:
-
- 11 added
- 1 modified
- 5 moved
-
VICTUALS (modified) (1 diff)
-
examples/qotw/006r (added)
-
examples/qotw/006r/qotw-regular-06.p6 (moved) (moved from examples/qotw/qotw-regular-06.p6) (1 diff)
-
examples/qotw/007e (added)
-
examples/qotw/007e/frost.p6 (added)
-
examples/qotw/008r (added)
-
examples/qotw/008r/dict (added)
-
examples/qotw/008r/qa.p6 (added)
-
examples/qotw/009r (added)
-
examples/qotw/009r/spel.p6 (added)
-
examples/qotw/009r/words.spel (added)
-
examples/qotw/019r (added)
-
examples/qotw/019r/bermudan.txt (moved) (moved from examples/qotw/bermudan.txt)
-
examples/qotw/019r/qotw-regular-19.p6 (moved) (moved from examples/qotw/qotw-regular-19.p6)
-
examples/qotw/024r (added)
-
examples/qotw/024r/binary_incr.tm (moved) (moved from examples/qotw/binary_incr.tm)
-
examples/qotw/024r/qotw-regular-24.p6 (moved) (moved from examples/qotw/qotw-regular-24.p6)
Legend:
- Unmodified
- Added
- Removed
-
VICTUALS
r5696 r7605 52 52 Saltines dropped into soup until soft 53 53 http://use.perl.org/~merlyn/journal/24119 54 55 tea, Dr Pepper, chili, crackers, any Jonathan Scott Duff 56 type of meat or cheese -
examples/qotw/006r/qotw-regular-06.p6
r3174 r7605 5 5 use v6; 6 6 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 7 sub format_number_list(*@input is copy) { 11 8 my @output; 12 9 while (@input) {
