Re: my first application in euphoria: a simple hangman
- Posted by petelomax Apr 25, 2012
- 1171 views
kobi said...
nitpicks are also welcomed :))
One tiny thing I spotted:
65 <= normalized and normalized <= 90 -- within A..Z
could equally be written as
normalized >= 'A' and normalized <= 'Z'
Pete