Skip to content

Instantly share code, notes, and snippets.

@mugyu
Created February 12, 2012 13:23
Show Gist options
  • Save mugyu/1808435 to your computer and use it in GitHub Desktop.
Save mugyu/1808435 to your computer and use it in GitHub Desktop.
Gauche で引数をとる。ファイル名
;;;; Gauche Arguments
(define (main args)
(print args)
(print (car args)) ; SRFI22
(print *program-name*) ; Gauche
)
; (args.scm foo bar)
; args.scm
; args.scm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment