all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
(use srfi-13);;Syntax for module inclusion depends on implementation,
|
||||
;;as does the presence of a sort function.
|
||||
(define (mypred? a b)
|
||||
(let ((len-a (string-length a))
|
||||
(len-b (string-length b)))
|
||||
(if (= len-a len-b)
|
||||
(string>? (string-downcase b) (string-downcase a))
|
||||
(> len-a len-b))))
|
||||
|
||||
(sort '("sorted" "here" "strings" "sample" "Some" "are" "be" "to") mypred?)
|
||||
|
|
@ -0,0 +1 @@
|
|||
("strings" "sample" "sorted" "here" "Some" "are" "be" "to")
|
||||
Loading…
Add table
Add a link
Reference in a new issue