readme entry

This commit is contained in:
2021-02-22 01:25:07 +01:00
parent 2700cdeea3
commit 2618f7b7ae
3 changed files with 29 additions and 33 deletions

25
tmp/malformed_program.lsp Normal file
View File

@@ -0,0 +1,25 @@
(print "Debug starts")
(define csv_list '())
(for f (ls-dir "tests/divi")
(if (regex-search? f "^divi_2021-02-0[1].*\.csv$")
(do
(define filename (+ "tests/divi/" f))
; (print filename)
(define csv_str (read-file filename))
(define csv_file_list (parse-csv csv_str))
(define csv_list (+ csv_list csv_file_list))
; (for x csv_file_list
; (print x)
; (define csv_list (+ csv_list csv_file_list))
; )
)
))
(for x csv_list
(print x))
; (if (> 1 10)
; (print "aaa"))
(print "Debug ends")