stevedonovan.github.com icon indicating copy to clipboard operation
stevedonovan.github.com copied to clipboard

typo in Lua cookbook

Open jdhao opened this issue 3 years ago • 0 comments

Thanks for your cookbook on Lua, very concise and informative. There is a typo in this page

l1 = new_list{10,20,30}
print(l2) ---> {10,20,30}

should be

l1 = new_list{10,20,30}
print(l1) ---> {10,20,30}

jdhao avatar Aug 23 '22 03:08 jdhao