SaenkoJr/project-lvl1-s466

View on GitHub
src/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import readlineSync from 'readline-sync';

export default () => {
  console.log('Welcome to the Brain Games!\n');

  const userName = readlineSync.question('May I have your name? ');
  console.log(`Hello, ${userName}!`);
};