andreirk/project-lvl1-s280

View on GitHub
src/bin/brain-gcd.js

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/env node
import game from '../games/gcd';

console.log('Welcome to the Brain Games!');

const numberOfStepsInTheGame = 3;

game(numberOfStepsInTheGame);