Speech synthesis: Difference between revisions

no edit summary
(→‎{{header|C}}: Code was wrong. Must pass text to argv[1], not argv[0]. If execlp() fails, must _exit, not return. While here, add code to print error messages.)
No edit summary
Line 62:
}
}</lang>
 
=={{header|Liberty BASIC}}==
Assumes that 'espeak' is available at the path shown.
<lang lb>
nomainwin
run "C:\Program Files\eSpeak\command_line\espeak "; chr$( 34); "This is an example of speech synthesis."; chr$( 34)
end
</lang>
 
=={{header|Mathematica}}==
Anonymous user