Skip to content

Commit bdad415

Browse files
author
DreamAndDead
committed
update
1 parent 5134e1f commit bdad415

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

script.lua

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1-
local a = 1
2-
print(a)
1+
-- script.lua
2+
-- Receives a table, returns the sum of its components.
3+
io.write("The table the script received has:\n");
4+
x = 0
5+
for i = 1, #foo do
6+
print(i, foo[i])
7+
x = x + foo[i]
8+
end
9+
io.write("Returning data back to C\n");
10+
return x

0 commit comments

Comments
 (0)