Hi all,
I’m building some statistical code and I would like to use Scala literal. It makes the code very readable since the variable name will make the code very similar to the theory.
I can do
val
P(X|C)= ....
but it seems that I can’t for
for {
`P(X|C)` <- ...
}
Is it possible to use backticks on the for comprehensions?
Who can I do it?
Best Regards