# Z is for Zsh, 19 characters -> Score: 22 #

19 character solution thanks to @GammaFunction.

```
<<<${(j::):-{a..z}}
```

Another 18 character solution using Perl.
```
perl -eprint\ a..z
```