feat(trainig): add helloworld! implementation.

This commit is contained in:
Guan Yuankai 2025-12-15 16:38:30 +08:00
parent e074239e2f
commit d8fa6bbd39
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#include <cstdio>
int main()
{
printf("hello world!");
return 0;
}