Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. (define x 1)
  2. (Define y 1)
  3.  
  4. (cond [(= x 0) 'one]
  5. [else (< (/ y x) c)])
  6.  
  7. (cond [(= 1 0) 'one]
  8. [else (< (/ y x) c)])
  9.  
  10. (cond [false 'one]
  11. [else (< (/ y x) c)])
  12.  
  13. (cond false
  14. [else (< (/ y x) c)])
  15.  
  16. (cond [else (< (/ y x) c)])
  17.  
  18. (< (/ y x) c)
  19.  
  20. (< (/ 1 x) c)
  21.  
  22. (< (/ 1 1) c)
  23.  
  24. (< 1 c)
  25.  
  26. Error: c is not defined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement