Compile Error
/in/foo.c:1:1: error: unknown type name 'def'
def dight(n):
^~~
/in/foo.c: In function 'dight':
/in/foo.c:1:13: error: expected declaration specifiers before ':' token
def dight(n):
^
/in/foo.c:1:5: warning: type of 'n' defaults to 'int' [-Wimplicit-int]
def dight(n):
^~~~~
/in/foo.c:15:1: warning: control reaches end of non-void function [-Wreturn-type]
print(0)
^~~~~