1
2
3
#!/usr/bin/guile \
-e main -s
...

Lisp CipherSaber

by Chris Jester-Young, June 22, 2008 05:39, 1 refactoring, tagged with scheme, ciphersaber, encryption

Apparently the last Scheme ...

729442eea8d8548842a6e0947e333c7b Talk
1
2
3
4
;; Turns a flat-list into a list of n-sized lists
;; Examples:
;;   (group-by '(1 2 3 4) 2) => ((1 2) (3 4))
...

Lisp Group-by

by omouse.vox.com, December 21, 2007 19:55, 5 refactorings, tagged with scheme, lists, flatlist, group

Tested on MzScheme

Avatar Talk