mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-05 01:36:39 +08:00
15 lines
239 B
Python
15 lines
239 B
Python
# RUN: %python -m artiq.compiler.testbench.embedding %s
|
|
|
|
from artiq.language.core import *
|
|
from artiq.language.types import *
|
|
|
|
class c:
|
|
def p(self, foo):
|
|
print(foo)
|
|
i = c()
|
|
|
|
@kernel
|
|
def entrypoint():
|
|
i.p("foo")
|
|
i.p(42)
|