Script Kit
by John Lindquist
Open main menu
Free Tutorials
Tips
Community Scripts
Docs
Guide
Discuss
Blog
Scripts
/
John Lindquist
/
Hello World
Install
Add to Kit.app
John Lindquist
// Menu: Hello World
// Description: Enter an name, speak it back
// Author: John Lindquist
// Twitter: @johnlindquist
let
name
=
await
arg
(
`
What's your name?
`
)
say
(
`
Hello,
${
name
}
!
`
)