debug changes

This commit is contained in:
VaclavT 2021-03-07 17:23:09 +01:00
parent ef6b023572
commit 1c7dea823b
3 changed files with 14 additions and 7 deletions

View File

@ -1,5 +1,8 @@
(print ;; (print
"ahoj" ;; "ahoj"
; tenhle komentar je problem ;; ; this comment is problem
) ;; )
(print "sds") ;; (print "lisp")
; (define l '(1 2 2 2 3 4 5 4 4 1 2 2 2 3 4 5 4 4 61 2 2 2 3 4 5 4 4 66)

View File

@ -154,4 +154,8 @@
(print "list:" l) (print "list:" l)
(print "uniq-ed list:" (uniq l)) (print "uniq-ed list:" (uniq l))
(define l '(1 2 (3 3 (4)) 5 6))
(print "list:" l)
(print "flatten-ed list:" (flatten l))
(print "Test ends") (print "Test ends")

View File

@ -1,5 +1,5 @@
(print (print
"ahoj" "ahoj"
; tenhle komentar je problem ; this comment is problem
) )
(print "sds") (print "lisp")