From 6effc655157e83825890d5d27c532a1bb1139b68 Mon Sep 17 00:00:00 2001 From: Dmitry Klionsky Date: Fri, 11 Feb 2022 21:14:50 +0300 Subject: [PATCH] Roll 0.6.10 --- README.md | 26 +++++++++++++------------- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 5d97a0e..b6c9e58 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ #### Linux ``` -$ wget https://github.com/ten0s/velisp/releases/download/0.6.9/velisp-0.6.9-linux-x64 -$ chmod +x velisp-0.6.9-linux-x64 +$ wget https://github.com/ten0s/velisp/releases/download/0.6.10/velisp-0.6.10-linux-x64 +$ chmod +x velisp-0.6.10-linux-x64 ``` #### Windows @@ -22,8 +22,8 @@ TODO ### Run REPL (Read–Eval–Print Loop) ``` -$ ./velisp-0.6.9-linux-x64 -VeLisp 0.6.9 on linux +$ ./velisp-0.6.10-linux-x64 +VeLisp 0.6.10 on linux Type ".help" for more information > (+ 1 2) 3 @@ -41,21 +41,21 @@ ADD Calculate 10th (default) Fibonacci number ``` -$ ./velisp-0.6.9-linux-x64 examples/fib.lsp +$ ./velisp-0.6.10-linux-x64 examples/fib.lsp 55 ``` Calculate 11th Fibonacci number ``` -$ ./velisp-0.6.9-linux-x64 examples/fib.lsp 11 +$ ./velisp-0.6.10-linux-x64 examples/fib.lsp 11 89 ``` Run Calculator ``` -$ ./velisp-0.6.9-linux-x64 examples/calc.lsp +$ ./velisp-0.6.10-linux-x64 examples/calc.lsp ``` ![App Calc Image](/images/app-calc.png) @@ -63,7 +63,7 @@ $ ./velisp-0.6.9-linux-x64 examples/calc.lsp Run Minesweeper ``` -$ ./velisp-0.6.9-linux-x64 examples/mines.lsp +$ ./velisp-0.6.10-linux-x64 examples/mines.lsp ``` ![App Mines Image](/images/app-mines.png) @@ -71,7 +71,7 @@ $ ./velisp-0.6.9-linux-x64 examples/mines.lsp Run Fifteen Puzzle ``` -$ ./velisp-0.6.9-linux-x64 examples/fifteen.lsp +$ ./velisp-0.6.10-linux-x64 examples/fifteen.lsp ``` ![App Fifteen Image](/images/app-fifteen.png) @@ -79,23 +79,23 @@ $ ./velisp-0.6.9-linux-x64 examples/fifteen.lsp ### Run code from standard input ``` -$ cat examples/fib.lsp | ./velisp-0.6.9-linux-x64 +$ cat examples/fib.lsp | ./velisp-0.6.10-linux-x64 55 ``` ``` -$ cat examples/fib.lsp | ./velisp-0.6.9-linux-x64 -- 11 +$ cat examples/fib.lsp | ./velisp-0.6.10-linux-x64 -- 11 89 ``` ``` -$ echo '(alert "Hello from VeLisp!")' | ./velisp-0.6.9-linux-x64 +$ echo '(alert "Hello from VeLisp!")' | ./velisp-0.6.10-linux-x64 ``` ![Alert Hello From VeLisp Image](/images/alert-hello-velisp.png) ``` -$ echo '(alert (strcat "Hello from " (nth 1 (argv)) "!"))' | ./velisp-0.6.9-linux-x64 -- Arg +$ echo '(alert (strcat "Hello from " (nth 1 (argv)) "!"))' | ./velisp-0.6.10-linux-x64 -- Arg ``` ![Alert Hello From Arg Image](/images/alert-hello-arg.png) diff --git a/package-lock.json b/package-lock.json index 670482c..780f834 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "VeLisp", - "version": "0.6.9", + "version": "0.6.10", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 096cad1..49cd648 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "VeLisp", - "version": "0.6.9", + "version": "0.6.10", "description": "AutoLISP / DCL compatible interpreter to run AutoCAD independent code", "main": "src/main.js", "scripts": {