seperate expr handling logic to a different file to prevent circular import, add format strings

This commit is contained in:
Pragyansh Chaturvedi
2025-09-11 02:51:24 +05:30
parent cfdc14137c
commit 1936ded032
4 changed files with 149 additions and 58 deletions

View File

@ -34,9 +34,9 @@ def hello_again(ctx: c_void_p) -> c_int64:
y = False
if x > 0:
if x < 2:
print("we prevailed")
print(f"we prevailed {x}")
else:
print("we did not prevail")
print(f"we did not prevail {x}")
ts = ktime()
last().update(key, ts)