mirror of https://github.com/m-labs/artiq.git
8 lines
147 B
Python
8 lines
147 B
Python
|
# RUN: %python -m artiq.compiler.testbench.jit %s
|
||
|
|
||
|
[x, y] = [1, 2]
|
||
|
assert (x, y) == (1, 2)
|
||
|
|
||
|
lst = [1, 2, 3]
|
||
|
assert [x*x for x in lst] == [1, 4, 9]
|