cpp-unity-template/src/main.cpp

7 lines
99 B
C++
Raw Normal View History

2023-09-15 17:12:51 -05:00
#include <iostream>
int main(void) {
std::cout << "Hello world" << std::endl;
return 0;
}