aboutsummaryrefslogtreecommitdiff
path: root/src/lisp/std.lisp
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-05-08 16:55:47 +0100
committerAkshay <[email protected]>2021-05-08 16:55:47 +0100
commit591d2b6167af53ce07b060711a4074f1e19c5f3f (patch)
tree6299e12574732b063aa57c977104eacf938e4eda /src/lisp/std.lisp
parent225351e7c98e91451e0b02fd2b9c3060ebd153a7 (diff)
add basic user-definable keybinds
Diffstat (limited to 'src/lisp/std.lisp')
-rw-r--r--src/lisp/std.lisp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lisp/std.lisp b/src/lisp/std.lisp
index a256125..fe09a8a 100644
--- a/src/lisp/std.lisp
+++ b/src/lisp/std.lisp
@@ -72,3 +72,18 @@
72 acc 72 acc
73 (rev-helper (cdr p) (cons (car p) acc)))) 73 (rev-helper (cdr p) (cons (car p) acc))))
74 (rev-helper ls '()))) 74 (rev-helper ls '())))
75
76(define (append l1 l2)
77 (if (null? l1)
78 l2
79 (cons (car l1)
80 (append (cdr l1) l2))))
81
82(define (cross xs ys)
83 (if (or (null? xs)
84 (null? ys))
85 '()
86 (fold '()
87 append
88 (map (lambda (x)
89 (map (lambda (y) (list x y)) ys)) xs))))