10 lines
149 B
Python
10 lines
149 B
Python
import stdio
|
|
import t, c
|
|
|
|
|
|
def deref_min_test() -> int:
|
|
s: str = "hello"
|
|
v: int = c.Deref(s)
|
|
stdio.printf("deref: %d\n", v)
|
|
return 0
|