Added luajit interp lines to the other 2 lua examples.

This commit is contained in:
zinobias 2023-05-04 12:32:15 +02:00 committed by Alessandro Pignotti
parent 77a2622111
commit 1385babdfb
2 changed files with 2 additions and 0 deletions

View file

@ -1,3 +1,4 @@
#!/usr/bin/env luajit
fruits = {"banana","orange","apple","grapes"}
for k,v in ipairs(fruits) do

View file

@ -1,3 +1,4 @@
#!/usr/bin/env luajit
A = { ["John"] = true, ["Bob"] = true, ["Mary"] = true, ["Elena"] = true }
B = { ["Jim"] = true, ["Mary"] = true, ["John"] = true, ["Bob"] = true }