# Ranges / Auto-quote

    # Ranges are created with the .. operator

    my @list1 = 1..100;

    # Infinite lists - lists are lazy by default

    my @list2 = 1..*;  # "whatever star"

    # Autoquote list, Perl's qw// shortcut

    my @list3 = <one two three>;