#!/usr/bin/env python3
# This file is placed in the Public Domain.


"stub"


import os
import sys


sys.path.insert(0, os.getcwd())


from genocide.runtime import main


if __name__ == "__main__":
    main()
