metacall/testing.py

13 lines
145 B
Python
Executable File

#!/usr/bin/env python2
import metacall
@metacall.callable(int, int, int)
def test(a, b, c):
print 'Hello world'
test(1,2,3)
test(1,2,3)