sorting-algorithms/src/main.cpp

8 lines
88 B
C++
Raw Normal View History

2023-01-11 12:33:46 -06:00
#include <iostream>
int main(void)
{
std::cout << "hello world\n";
return 0;
}