Files
RepoMain/ZCppMain/test.cpp

19 lines
250 B
C++
Raw Normal View History

2021-02-25 17:51:25 +09:00
2021-02-26 17:21:25 +09:00
2021-02-25 17:52:07 +09:00
#include <iostream>
2021-02-26 17:21:25 +09:00
#include "ZtCObjList.H"
2021-02-25 17:27:36 +09:00
2021-02-25 17:51:25 +09:00
2021-02-25 17:27:36 +09:00
using namespace std;
2021-02-25 17:51:25 +09:00
int main(int ArgiCnt, char** AppArgu)
2021-02-25 17:27:36 +09:00
{
2021-02-26 17:21:25 +09:00
ZNsMain::ZtCObjList<int> CListByInt;
2021-02-25 17:27:36 +09:00
cout<<"C++ 's great start"<<endl;
2021-02-25 17:51:25 +09:00
return 0;
}/*
int main(int ArgiCnt, char** AppArgu)*/