Speech synthesis: Difference between revisions

no edit summary
m (added whitespace before the TOC (table of contents), added other whitespace to the task's preamble.)
No edit summary
Line 218:
=={{header|PicoLisp}}==
<lang PicoLisp>(call 'espeak "This is an example of speech synthesis.")</lang>
 
=={{header|PowerShell}}==
Capture system disk label information as an array of strings:
<lang PowerShell>
Add-Type -AssemblyName System.Speech
 
$anna = New-Object System.Speech.Synthesis.SpeechSynthesizer
 
$anna.Speak("I'm sorry Dave, I'm afraid I can't do that.")
$anna.Dispose()
</lang>
 
=={{header|Racket}}==
308

edits