"""
数学学习软件 - 主程序入口
from gui import MathLearningApp
def main():
"""主函数"""
app = MathLearningApp()
app.run()
if __name__ == "__main__":
main()