There may be multiple writes and reads to variables in a python runtime.Like:
# int myint=1
a=NetCore.Get(myint)
b=a+2
NetCore.Set(myint,b)
# myint=3
a=NetCore.Get(myint)
c=a+1
NetCore.Set(myint,c)
# return myint=4
Thank you!
There may be multiple writes and reads to variables in a python runtime.Like:
# int myint=1
a=NetCore.Get(myint)
b=a+2
NetCore.Set(myint,b)
# myint=3
a=NetCore.Get(myint)
c=a+1
NetCore.Set(myint,c)
# return myint=4
Thank you!