10 lines
132 B
C++
10 lines
132 B
C++
#include <iostream>
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
cout << "hi" << endl;
|
|
}
|