장원석

first

Showing 1 changed file with 9 additions and 0 deletions
1 +const readline = require('readline').createInterface({
2 + input: process.stdin,
3 + output: process.stdout
4 + });
5 +
6 + readline.question('', name => {
7 + console.log(`${name}`);
8 + readline.close();
9 + });
...\ No newline at end of file ...\ No newline at end of file