We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3b21da commit 758d4d8Copy full SHA for 758d4d8
bin/brain-games.js
@@ -1 +1,5 @@
1
+import { userName } from '/home/rybkina01/qa-auto-engineer-javascript-project-44/src/cli.js';
2
+
3
console.log('Welcome to the Brain Games!');
4
5
+console.log(`Hello, ${userName}!`);
src/cli.js
@@ -0,0 +1,3 @@
+import readlineSync from 'readline-sync';
+export let userName = readlineSync.question('May I have your name? ');
0 commit comments