Guest User

Untitled

a guest
Jul 28th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. require('cycle-shell')(main)
  2.  
  3. function main (input) {
  4. if (input === 15) {
  5. return `YOU WON THE GAME!!!!!`
  6. } else {
  7. return renderHint(input)
  8. }
  9. }
  10. function renderHint (guess) {
  11. if (guess > 15) {
  12. return `Sorry, too high`
  13. } else {
  14. return`Sorry, too low`
  15. }
  16. }
Add Comment
Please, Sign In to add comment