Bukasik/project-lvl1-s368

View on GitHub
src/games/sayHi.js

Summary

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

export default () => {
  console.log('Welcome to the Brain Games!');
  const name = readlineSync.question('May I have you name? ');
  console.log(`Hello, ${name}!`);
};