Speech synthesis: Difference between revisions

Content deleted Content added
→‎{{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}}==