Is there any feasability to print the value of a local variable in the runtime & the value it has in the console. (Like other programming languages for debugging)
Discussion posts and replies are publicly visible
you may do it like
a!localVariables(
local!a: 4,
local!b: 5,
local!c: local!a +local!b,
local!c
)
this will print the local!c in the output in expression rule