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/String-append/EchoLisp/string-append.echolisp
Normal file
9
Task/String-append/EchoLisp/string-append.echolisp
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
;; Solution from Common Lisp and Racket
|
||||
(define-syntax-rule (set-append! str tail)
|
||||
(set! str (string-append str tail)))
|
||||
|
||||
(define name "Albert") → name
|
||||
|
||||
(set-append! name " de Jeumont-Schneidre")
|
||||
name
|
||||
→ "Albert de Jeumont-Schneidre"
|
||||
Loading…
Add table
Add a link
Reference in a new issue