add bool assignment support

This commit is contained in:
2025-09-10 11:40:07 +05:30
parent ebb872fc81
commit f830fbe8ba
2 changed files with 21 additions and 3 deletions

View File

@ -30,8 +30,12 @@ def hello_again(ctx: c_void_p) -> c_int64:
# if delta < 1000000000:
# print("execve called within last second")
# last().delete(key)
if True:
x = False
x = True
if x:
print("we prevailed")
if x:
print("we did not prevail")
ts = ktime()
# last().update(key, ts)
return c_int64(0)