commit fac9550488955cbf5dd2b72afdebbaf65969cfef
parent 541aed0c97acb298b5d8b79f3691add72ee5ec95
Author: NunoSempere <nuno.sempere@protonmail.com>
Date: Sat, 10 Jun 2023 19:43:36 -0600
reword lack of warts in lua
Diffstat:
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -99,7 +99,7 @@ R has a warm place in my heart from back in the day, and it has predefined funct
### Lua
-I was also really pleased with Lua. I liked the simplicity and elegance, and lack of warts. And coming from javascript, I appreciated that the program did not fail silently, but rather gave me useful errors, like:
+I was also really pleased with Lua. I liked the simplicity. And coming from javascript, I appreciated that the program did not fail silently, but rather gave me useful errors, like:
```
lua samples.lua
@@ -111,9 +111,16 @@ stack traceback:
make: *** [makefile:14: run] Error 1
```
-I also appreciated the speedup when using the LuaJIT interpreter.
+I also appreciated the speedup when using the LuaJIT interpreter. You can install it with commands similar to
-Overall I'm thinking that a combination of lua at least for scripting and ¿nim/C/tbd?
+```
+git clone https://luajit.org/git/luajit.git
+make
+sudo make install
+sudo ln -sf luajit-2.1.0-beta3 /usr/local/bin/luajit
+```
+
+Overall I'm thinking that a combination of lua at least for scripting and ¿nim/C/tbd? for more serious programs could be quite powerful.
### Overall thoughts