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
|
|
@ -0,0 +1,19 @@
|
|||
;; screen copy of the REPL
|
||||
;; note that the &i variables remember expression evaluation, and may be used in other expressions
|
||||
|
||||
EchoLisp - 2.16.2
|
||||
📗 local-db: db.version: 3
|
||||
(define ( f s1 s2 s3) (string-append s1 s3 s3 s2))
|
||||
[0]→ f
|
||||
(f "Rosetta" "Code" ":")
|
||||
[1]→ "Rosetta::Code"
|
||||
(+ 4 8)
|
||||
[2]→ 12
|
||||
(* 4 8)
|
||||
[3]→ 32
|
||||
(* &2 &3)
|
||||
[4]→ 384
|
||||
(f &1 &1 ":")
|
||||
[5]→ "Rosetta::Code::Rosetta::Code"
|
||||
|
||||
;; etc.
|
||||
Loading…
Add table
Add a link
Reference in a new issue