Skip to content

Instantly share code, notes, and snippets.

@vxe
Created May 2, 2016 21:17
Show Gist options
  • Save vxe/f0bad044431d192c79d49237285827c0 to your computer and use it in GitHub Desktop.
Save vxe/f0bad044431d192c79d49237285827c0 to your computer and use it in GitHub Desktop.
guile command line arg fail
#!/usr/local/bin/guile \
-e main -s
!#
(define (main args)
(map (lambda (arg) (display arg) (display " "))
(cdr args))
(newline))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment