Talk:Swinging the Alphabet
Appearance
This redirect does not require a rating on Wikipedia's content assessment scale. It is of interest to the following WikiProjects: | ||||||||
|
The lyrics ...
[edit]Here's a computer program to print out the entire lyrics to the song. It's shorter than really listing them!
'Basic:
Lyric$ = "*ee Aye *ay. *ee Eee *ee, *ee Eye *icky *ye, *ee Oh *o" For i = 65 To 90 Letter$ = Chr$(i) If InStr("AEIOU", Letter$) = 0 Then Print Replace$(Lyric$, "*", Letter$) End If Next i
Readers may wish to offer the same in other languages. I'll do extinct ones like Fortran, Cobol or Pascal if necessary.