Initial commit

This commit is contained in:
2025-05-07 01:05:49 +00:00
commit 3c1f8626fd
61 changed files with 1306 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#include <amscpptemplate25a/amscpptemplate25a.hpp>
namespace ams
{
void amscpptemplate_testfn2()
{
printf("Test function 2.\n");
return;
}
};

View File

@ -0,0 +1,12 @@
#include <amscpptemplate25a/amscpptemplate25a.hpp>
namespace ams
{
void amscpptemplate_testfn()
{
printf("Test function.\n");
return;
}
};

9
src/main.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <amscpptemplate25a/amscpptemplate25a.hpp>
int main(int argc, char* argv[])
{
int ret = 0;
printf("ams c++ project template tests.\n");
ams::amscpptemplate_testfn();
return ret;
}