2 # Hum - The singing macintosh
8 dict = { 'A':57, 'A#':58, 'B':59, 'C':60, 'C#':61, 'D':62, 'D#':63,
9 'E':64, 'F':65, 'F#':66, 'G':67, 'G#':68}
11 vd
= macspeech
.GetIndVoice(2)
13 print 'Input strings of notes, as in A B C C# D'
16 str = sys
.stdin
.readline()
19 str = string
.split(str[:-1])
22 if not dict.has_key(s
):
23 print 'No such note:', s
30 while macspeech
.Busy():