Home › Forums › KX Academy › Function of syntax ` › Re: Function of syntax `
-
Hi Michaela, thanks for the answer
Now I’m studying about function and encountering the same problem about backtick.
Let me give 2 examples.
Example #1:
b:6
f:{b:42; `b set x; b}f[98]
bExample #2:
b:6
f:{b:42; b set x; b}f[98]
bIn example #1, the value of b becomes 98, but in example #2, it stays 6
In this case, what’s the function of backtick?
Thanks