Skip to content

Instantly share code, notes, and snippets.

@shubhamkumar13
Created August 17, 2021 06:20
Show Gist options
  • Save shubhamkumar13/612fd0e5870a30cdf44a159343f95aef to your computer and use it in GitHub Desktop.
Save shubhamkumar13/612fd0e5870a30cdf44a159343f95aef to your computer and use it in GitHub Desktop.
biwascheme shenanigans
(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