nac3/nac3artiq/demo/tests/global_variables.py

15 lines
159 B
Python
Raw Normal View History

2025-01-16 12:42:13 +08:00
from min_artiq import *
from numpy import int32
X: Kernel[int32] = 1
@rpc
def display_X():
print_int32(X)
@kernel
def inc_X():
global X
X += 1