Skip to content

Instantly share code, notes, and snippets.

@antirez
Created November 11, 2015 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antirez/5fefad49a308ac78c4e6 to your computer and use it in GitHub Desktop.
Save antirez/5fefad49a308ac78c4e6 to your computer and use it in GitHub Desktop.
lua debugger> eval return {1,2,3}
<retval> {1; 2; 3}
lua debugger> eval return {x=5,y=10,1,2,3}
<retval> {1=1; 2=2; 3=3; "y"=10; "x"=5}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment