example session for hello-world added by mario-goulart on Mon Jul 27 21:04:59 2015

;;; The source code:

$ cat hello-world.scm
(print "Hello, world!")


;;; Running it interpreted:

$ csi -s hello-world.scm 
Hello, world!


;;; Compiling and running the binary executable:

$ csc hello-world.scm 

$ file hello-world
hello-world: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs)...

$ ./hello-world
Hello, world!