Skip to content

Instantly share code, notes, and snippets.

@mugyu
Created February 12, 2012 07:58
Show Gist options
  • Save mugyu/1807158 to your computer and use it in GitHub Desktop.
Save mugyu/1807158 to your computer and use it in GitHub Desktop.
Gauche で hello world!
;;;; Gauche hello
(print "Hello, Gauche!!!")
(format #t "Hello, ~s!~s\n" 'Gauche '!!)
(print (format #f "Hello, ~s!~s\n" 'Gauche '!!))
(display "Hello, Gauche!!!\n")
(write "Hello, Gauche!!!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment