Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. process.stdin.resume()
  2. process.stdin.setEncoding('utf8')
  3.  
  4. console.log('Wallah t\'as quel age ?')
  5. process.stdin.on('data' , (age) =>{
  6. if(age >= 1 && age <= 99){
  7. console.log(`T'as été pondu en ${2019-age} !`);
  8. }else{
  9. console.log('Osti ! Entre ton age !')
  10. }
  11. process.exit()
  12. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement