Guest User

Untitled

a guest
Jun 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. require: PLaneT
  2. could not find the requested package: Server had no matching package:
  3. No package matched the specified criteria
  4.  
  5. (define whoops
  6. (let ((string? string?)
  7. (string-append string-append)
  8. (error error)
  9. (cons cons)
  10. (map map)
  11. (apply apply))
  12. (define (error-printform x)
  13. (if (string? x)
  14. (string-append """ x """)
  15. x))
  16. (lambda (string . args)
  17. (apply error (cons string (map error-printform args))))))
  18.  
  19. (if (char=? #+ (string-ref (number->string 1.0) 0))
  20. (let ((old-ns number->string)
  21. (char=? char=?)
  22. (string-ref string-ref)
  23. (substring substring)
  24. (string-length string-length))
  25. (set! number->string
  26. (lambda args
  27. (let ((result (apply old-ns args)))
  28. (if (char=? #+ (string-ref result 0))
  29. (substring result 1 (string-length result))
  30. result)))))
  31. 'no-problem)
  32.  
  33. (require (planet dyoo/simply-scheme:1:2/simply-scheme))
Add Comment
Please, Sign In to add comment