This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cdef int func_1(): | |
return 1 | |
cdef int func_any(): | |
return 10 | |
def cy_func(num:int) -> int: | |
if num == 1: | |
return func_1() |