From 7b7bf727da3250907284368b98b0083a4b4e2386 Mon Sep 17 00:00:00 2001 From: mryouse Date: Sat, 3 Jun 2023 20:22:18 +0000 Subject: initial commit --- p99/p14.neb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 p99/p14.neb (limited to 'p99/p14.neb') diff --git a/p99/p14.neb b/p99/p14.neb new file mode 100644 index 0000000..5af9fc0 --- /dev/null +++ b/p99/p14.neb @@ -0,0 +1,15 @@ +; P14: Duplicate the elements of a list. + +(def a (list "a" "b" "c" "c" "d")) + +(func dup (lst) + (reduce + (lambda (acc item) + (append + (append acc item) + item)) + lst + (list))) + +(print (->string a)) +(print (->string (dup a))) -- cgit v1.2.3