Skip to content

Instantly share code, notes, and snippets.

@kghost
Created August 9, 2012 03:46
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 kghost/3300761 to your computer and use it in GitHub Desktop.
Save kghost/3300761 to your computer and use it in GitHub Desktop.
yin yang for Yume ( http://kghost.info/~kghost/Yume/ )
(let* ((yin
((lambda (cc) (write-char #\@ (current-output-port)) cc) (call-with-current-continuation (lambda (c) c))))
(yang
((lambda (cc) (write-char #\* (current-output-port)) cc) (call-with-current-continuation (lambda (c) c)))))
(yin yang))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment