Skip to content

Instantly share code, notes, and snippets.

@fbenevides
Created March 16, 2011 23:37
Show Gist options
  • Save fbenevides/873549 to your computer and use it in GitHub Desktop.
Save fbenevides/873549 to your computer and use it in GitHub Desktop.
inclui 1 elemento no final da lista
(define (inclui x ls)
(reverse (cons x (reverse ls)))
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment