Support storing and printing string type

This commit is contained in:
Pragyansh Chaturvedi
2025-09-26 04:17:29 +05:30
parent da8a495da7
commit 737c4d3039
2 changed files with 19 additions and 4 deletions

View File

@ -27,7 +27,7 @@ def hello(ctx: c_void_p) -> c_int32:
process_id = pid()
dataobj.pid = process_id
dataobj.ts = ts
print(f"clone called at {ts} by pid {process_id}")
print(f"clone called at {ts} by pid {process_id}, str is {strobj}")
events.output(dataobj)
return c_int32(0)