You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/env python3
- # -*- coding: utf-8; mode: python; tab-width: 4; indent-tabs-mode: nil -*-
- # vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 fileencoding=utf-8
-
- import os
- import sys
- sys.path.append(os.path.dirname(os.path.abspath(__file__)))
- from simupy.app import App
-
-
- if __name__ == "__main__":
- app = App()
-
- app.mainloop()
|