Created
November 11, 2015 18:41
-
-
Save antirez/5fefad49a308ac78c4e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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