mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
Fixes #1190 Fixes https://github.com/powdr-labs/powdr/issues/1488 ``` // creates intermediate column. let x: inter = ... // same here, expects an array on the rhs let x: inter[k] = ... // Creates an intermediate column, this is printed from Analyzed col x = ...; // Creates an array of intermediate columns, this is printed from analyzed and it's actually new syntax. col x[k] = ...; // old syntax for intermediate columns, this just defines a "generic variable" after the change, // essentially an intermediate column that is always inlined. let x: expr = ...; ``` --------- Co-authored-by: Leo <leo@powdrlabs.com>