Skip to content

Instantly share code, notes, and snippets.

@wjlroe
Created July 14, 2010 10:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wjlroe/475264 to your computer and use it in GitHub Desktop.
Save wjlroe/475264 to your computer and use it in GitHub Desktop.
(defmodule hello
(export (start 0) (len 1)))
(defun start ()
(: io format '"Hello World!~n"))
(defun len (l)
(if (== l ()) 0
(+ 1 (len (cdr l)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment