Left hand side of pipe operator must not evaluate to void (AJTERR10035)
Product(s) | Karo.NET Compiler |
---|
Description
You tried to use a pipe operator on a statement that does not yield any result.
io:out("test") -> io:out(); // ^^^^^^^^^^^^^^ This function returns "sl.types::void" which cannot be passed in a pipe statement.
How can I resolve this error?
Not specified