Table of Contents

A pipe statement leading to a variable assignment cannot be further expanded with pipes (AJTERR10053)

Product(s) Karo.Net Compiler

Description

Assigning to a local variable does not allow to further use it in a pipe statement.

test: string := "hi";
"hello" -> test -> io:out();
//              ^^^^^^^^^^^ Further pipe statement is not allowed.

How can I resolve this error?

Not specified