Created
June 13, 2014 21:48
-
-
Save nefftd/1c2f0bdef037347e3afc to your computer and use it in GitHub Desktop.
tostringall (moonscript)
This file contains 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
do | |
tsa = (n,a,...) -> | |
tostring(a),tsa(n-1,...) if n > 0 | |
export tostringall = (...) -> | |
n = select '#',... | |
tsa n,... if n > 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment