The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
270 B
15 lines
270 B
7 years ago
|
#!/usr/bin/env python
|
||
|
|
||
|
import sys
|
||
|
import tachyon
|
||
|
|
||
|
result = tachyon.phaserize('shoot')
|
||
|
|
||
|
if not isinstance(result, int):
|
||
|
print('Returned result not an integer.')
|
||
|
sys.exit(1)
|
||
|
|
||
|
if result != 1:
|
||
|
print('Returned result {} is not 1.'.format(result))
|
||
|
sys.exit(1)
|