From 85608ab7550cf1abafd26246c3e232a11f10dc4b Mon Sep 17 00:00:00 2001 From: VaclavT Date: Tue, 9 Feb 2021 18:23:36 +0100 Subject: [PATCH] added quick sort example --- debug.lisp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/debug.lisp b/debug.lisp index b481db5..d9fe0cf 100644 --- a/debug.lisp +++ b/debug.lisp @@ -1,5 +1,10 @@ (print "Debug starts") + +(include "tmp/example.lisp") +(print "sorted: " (qs '(10 9 8 7 6 5 4 3 2 1))) + (define csv (read-file "tmp/data.csv")) (print csv) (print (parse-csv csv)) + (print "Debug ends")