Created
August 17, 2021 06:20
-
-
Save shubhamkumar13/612fd0e5870a30cdf44a159343f95aef to your computer and use it in GitHub Desktop.
biwascheme shenanigans
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define (append* . args) | |
(map (lambda (x) (if (list? x) (car x) x)) (apply append args)) | |
) | |
(define (append-map proc lst) (apply append (map proc lst))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment