ngs
ngs copied to clipboard
Consider simplified logging/debugging for a variable
# Current
log("Pipeline stack is ${pipeline_stack}")
# Maybe
log pipeline_stack
# Maybe
log(@pipeline_stack)
Another use case for variable_name + variable_value combo: blah.set(argv=argv)
- could be for example blah.set(@argv)
How this should work if an expression is given? Maybe AST + value?