Kirk Rogers wrote:
> Can I create a loop and list the alphabet?
>
> K

Try:
        print chr for (65..90)

The following may be a little clearer, for those who have not memorized
ASCII tables :)

        print chr for (ord('A')..ord('Z'))

This prints:
        ABCDEFGHIJKLMNOPQRSTUVWXYZ

Have a look at the documentation for the functions
chr (int -> ASCII)
ord (ASCII -> int)

Zoltan


---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to