summaryrefslogtreecommitdiffstats
path: root/test cases/python/1 basic/subdir/subprog.py
blob: 54178e5f453dbe9a41ff24d808aa3bcb435dff0e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3

# In order to run this program, PYTHONPATH must be set to
# point to source root.

from gluon import gluonator

print('Running mainprog from subdir.')

if gluonator.gluoninate() != 42:
    raise ValueError("!= 42")