mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
Why oh why...
This commit is contained in:
parent
dc000fb435
commit
508d21c842
|
@ -66,13 +66,13 @@ g.data = mdata.third
|
|||
list3 = g:generate_list()
|
||||
|
||||
print("From lua: ")
|
||||
for i, v in list1 do
|
||||
for i = 1, #list1 do
|
||||
print("\tlist1[" .. i .. "] = " .. list1[i])
|
||||
end
|
||||
for i, v in list2 do
|
||||
for i = 1, #list2 do
|
||||
print("\tlist2[" .. i .. "] = " .. list2[i])
|
||||
end
|
||||
for i, #t in list3 do
|
||||
for i = 1, #list3 do
|
||||
print("\tlist3[" .. i .. "] = " .. list3[i])
|
||||
end
|
||||
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// This file was generated with a script.
|
||||
// Generated 2016-09-22 15:48:51.139867 UTC
|
||||
// This header was generated with sol v2.14.2 (revision 3a00ce0)
|
||||
// Generated 2016-09-22 16:13:14.308519 UTC
|
||||
// This header was generated with sol v2.14.2 (revision dc000fb)
|
||||
// https://github.com/ThePhD/sol2
|
||||
|
||||
#ifndef SOL_SINGLE_INCLUDE_HPP
|
||||
|
|
Loading…
Reference in New Issue
Block a user