Re: [racket-users] Make your computer talk in Racket on Windows in 5 lines

2020-05-16 Thread Ryan Culpepper
I wrote a little flashcard program in Racket to help myself learn Czech vocabulary (here: https://github.com/rmculpepper/racket-jazyk), and when run on a Mac it uses `say` for audio. IIRC, I had to install extra "voice" packages for Czech, but that consisted of clicking a few buttons in Settings.

Re: [racket-users] Make your computer talk in Racket on Windows in 5 lines

2020-05-16 Thread Sorawee Porncharoenwase
On Mac, there’s a say command, so this would do it. (system "say \"hello world\"") When I had a Linux machine, I recalled using a command named espeak, which is similar to say on Mac. On Sat, May 16, 2020 at 11:15 AM Sam Phillips wrote: > Stephen De Gabrielle and I are wondering if any Mac or

[racket-users] Make your computer talk in Racket on Windows in 5 lines

2020-05-16 Thread Sam Phillips
Stephen De Gabrielle and I are wondering if any Mac or Linux users have similar short programs to make their computer talk. https://www.reddit.com/r/Racket/comments/gkz3yi/make_your_computer_talk_in_racket_on_windows_in_5/ Cheers, Sam ->8->8- #lang racket/base (require ffi/com)