Speech synthesis: Difference between revisions

Added Quackery.
(Added Quackery.)
Line 653:
engine.runAndWait()
</syntaxhighlight>
 
=={{header|Quackery}}==
 
Mac specific.
 
<syntaxhighlight lang="Quackery"> [ $ /
import subprocess
subprocess.run(["say",
string_from_stack()])
/ python ] is speak ( $ --> )
 
$ "This is an example of speech synthesis" speak</syntaxhighlight>
 
=={{header|Racket}}==
1,467

edits