Skip to content

Instantly share code, notes, and snippets.

@GuillaumeLoup
Last active March 18, 2019 08:50
Show Gist options
  • Save GuillaumeLoup/4050faac2b1d7abcb968801af84398a2 to your computer and use it in GitHub Desktop.
Save GuillaumeLoup/4050faac2b1d7abcb968801af84398a2 to your computer and use it in GitHub Desktop.
process.stdin.resume()
process.stdin.setEncoding('utf8')
console.log('What\'s your age ? ')
process.stdin.on('data', (number) => {
if (number < 99 && number >= 1){
console.log("votre année de naissance est " + (2019 - number))
process.exit()
} else {
console.log("vous mentez!")
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment