I installed the newest package(version code is 1.0.0), but the following code was invalid. ``` // // Disable prompt's built-in SIGINT handling: // prompt.start({noHandleSIGINT: true}); process.on('SIGINT', function() { console.log("This will execute when you hit CTRL+C"); process.exit(); }); ```