Example #1
0
def my_mod(*args):
  return _example.my_mod(*args)
Example #2
0
def my_mod(n: 'int', m: 'int') -> "int":
    return _example.my_mod(n, m)
Example #3
0
def my_mod(x, y):
    return _example.my_mod(x, y)
Example #4
0
def my_mod(n, m):
    return _example.my_mod(n, m)
def my_mod(*args):
    return _example.my_mod(*args)
Example #6
0
"""
call.py
"""

import _example
print _example.fact(5)
print _example.my_mod(7,3)
print _example.get_time()




Example #7
0
def my_mod(x, y):
    return _example.my_mod(x, y)
Example #8
0
def my_mod(x: 'int', y: 'int') -> "int":
    return _example.my_mod(x, y)