Table of Contents

Left side of pipe statement was not consumed by the right side (AJTERR10054)

Product(s) Karo.NET Compiler

Description

The left side of a pipe statement must be consumed by a function called on the right side of the pipe statement.

io:in() -> "test" + "s" -> io:out();
//         ^^^^^^^^^^^^ No function that consumes the pipe operator here.

How can I resolve this error?

Split the pipe statement into separate statements.