mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-30 08:38:15 +01:00
14 lines
195 B
C++
14 lines
195 B
C++
#ifdef _MSC_VER
|
|
#pragma warning(disable : 4786)
|
|
#endif
|
|
|
|
#include <iostream>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
std::cout << "tests go here" << std::endl;
|
|
|
|
return 0;
|
|
} // main
|
|
|
|
// end of file
|