mirror of
https://github.com/m-labs/artiq.git
synced 2025-02-08 16:43:19 +08:00
12 lines
160 B
Python
12 lines
160 B
Python
# RUN: %python -m artiq.compiler.testbench.embedding %s
|
|
|
|
from artiq.experiment import *
|
|
|
|
@kernel
|
|
def foo():
|
|
return "x"
|
|
|
|
@kernel
|
|
def entrypoint():
|
|
foo()
|