// Name: Greet Editor
// Description: Opens editor with greeting
// Author: johnlindquist
import '@johnlindquist/kit'
const name = await arg<string>('Say hello to?');
// Open the editor with a greeting message.
await editor(`Hello, ${name}!`);