Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
9
Task/Test-a-function/EchoLisp/test-a-function.echolisp
Normal file
9
Task/Test-a-function/EchoLisp/test-a-function.echolisp
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
(assert (palindrome? "aba")) → #t
|
||||
(assert (palindrome? "abbbca") "palindrome fail")
|
||||
💥 error: palindrome fail : assertion failed : (palindrome? abbbca)
|
||||
|
||||
(check-expect (palindrome? "aba") #t) → #t
|
||||
(check-expect (palindrome? "abcda") #f) → #t
|
||||
(check-expect (palindrome? "abcda") #t)
|
||||
😐 warning: #t : check failed : (palindrome? abcda) → #f
|
||||
(assert (palindrome? "un roc lamina l animal cornu")) → #t
|
||||
Loading…
Add table
Add a link
Reference in a new issue