LearningOOPWithPharo
LearningOOPWithPharo copied to clipboard
Isogramme
(ZnClient new get: 'https://raw.githubusercontent.com/SquareBracketAssociates/ LearningOOPWithPharo/ master/resources/listeDeMotsAFrancaisUTF8.txt') utf8Decoded lines
In most cases (99%), .txt files are served so that they are automatically decoded correctly as text. Hence the #utf8Decoded is not needed.
(ZnClient new get: 'https://raw.githubusercontent.com/SquareBracketAssociates/LearningOOPWithPharo/master/resources/listeDeMotsAFrancaisUTF8.txt') lines.
Thanks!