I am still finding my feet with erlang, and I read the documentation about using "and", "or" operators, but why is the following not evaluating?
X = 15,
Y = 20,
X==15 and Y==20.
I am expecting for a "true" in the terminal, but I get a "syntax error before ==".