Skip to content
Permalink
Browse files
Adding application starting point
  • Loading branch information
moozzyk committed Sep 30, 2017
1 parent 6425ec1 commit 34bc493
Showing 1 changed file with 8 additions and 0 deletions.
@@ -0,0 +1,8 @@
const readline = require('readline');

let rl = readline.createInterface(process.stdin, process.stdout);

rl.question('Enter your name: ', name => {
console.log(name);
rl.close();
});

0 comments on commit 34bc493

Please sign in to comment.