6 lines
121 B
Text
6 lines
121 B
Text
def x: ['a', 'b', 'c'];
|
|
def y: ['A', 'B', 'C'];
|
|
def z: [1, 2, 3];
|
|
|
|
1..$x::length -> '$x($);$y($);$z($);
|
|
' -> !OUT::write
|