Skip to content

Instantly share code, notes, and snippets.

@gs
Created May 3, 2021 21:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gs/724901095173add6284e1c0ab712b9ae to your computer and use it in GitHub Desktop.
Save gs/724901095173add6284e1c0ab712b9ae to your computer and use it in GitHub Desktop.
(defn speak-it
"Call the google translate with language and value of the atom"
[lang]
(let [speech-syn (.-speechSynthesis js/window)]
(def msg (js/SpeechSynthesisUtterance. @number))
(aset msg "lang" lang)
(.speak speech-syn msg)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment