Ever wanted to provide your arguments to a function as a comment?
https://gist.github.com/RikudouSage/18defbf1746322a289ae78b2980d0115
This reminds me of a trick to get multiline strings in javascript before they where formally introduced. If you coerce a function in to a string you get the source code for that function, comments and all. This meant that you could write a function with multiline comments and then pick out the middle part. Haven’t tested it so it’s probably sligthly wrong but it was something like:
var multiLine = ('' + function () {/* line 1 line 2 */}); multiLine = multiLine.substring(16, subString.length-4);
no. never wanted that.
the function reads the comment added after the function is called using a backtrace and uses them as arguments
How marvelously creative. What an abomination.
What a terrible day to have eyes
No, my eyes! Forever unclean!
Do you really want an answer for that?
huh, that does look kinda clean though
@python I mean, it’s already an abomination, I can at least write a clean code.