.. construct a range object (think of a mathematical interval).
... builds a sequence (think of a lazily generated disposable list).
If all I want to do is iterate over consecutive integers (for example, for indexing), I would prefer it to be the same (this is a less general tool and the character is shorter to load).
If you need more precise control, use the latter (for example, the idiomatic example for generating a Fibonacci sequence in Perl6 is given by the expression 1, 1, *+* ... * , where the third term *+* is the rule of inductive element generation).
source share