Files
metabuilder/typthon/Programs/python.c
johndoe6345789 0e707caa56 feat: Add Typthon
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:10:58 +00:00

18 lines
266 B
C

/* Minimal main program -- everything is loaded from the library */
#include "Python.h"
#ifdef MS_WINDOWS
int
wmain(int argc, wchar_t **argv)
{
return Ty_Main(argc, argv);
}
#else
int
main(int argc, char **argv)
{
return Ty_BytesMain(argc, argv);
}
#endif