in reply to Re: Re: please explain this script
in thread please explain this script

ord returns the ordinal value (usually the ascii value) of a given literal character. For example, print ord('A'); prints 65.


Dave