Speech synthesis: Difference between revisions

m
→‎{{header|AutoHotkey}}: removed blank lines
(→‎{{header|Ruby}}: I have espeak for OpenBSD, but this script failed because it only checked for Linux.)
m (→‎{{header|AutoHotkey}}: removed blank lines)
Line 5:
{{works with|AutoHotkey_L}}
 
<lang ahk>talk := ComObjCreate("sapi.spvoice")
talk.Speak("This is an example of speech synthesis.")</lang>
talk := ComObjCreate("sapi.spvoice")
talk.Speak("This is an example of speech synthesis.")
</lang>
 
=={{header|C}}==