?? [a b c] - Probe multiple words (for debugging)
I'm not sure I posted a note on this where people can see it... so I'll post it here.
In R3, the ?? function now allows blocks.
As you know, ?? is quite useful for debugging because it prints not only a molded value, but the variable word:
name: "Neo"
?? name
name: "Neo"
Using it on a block:
name: "Neo"
age: 32
file: %morpheus.r
?? [name age file]
name: "Neo" age: 32 file: %morpheus.r
It's handy not only because you can easily see multiple values, but also because it's just one line, and you can easily comment it out later.
;?? [name age file]
A small thing, but I use it often. That's why I wanted to note it.
Post Comments
|