search-algorithms/src/main.cpp

7 lines
96 B
C++
Raw Normal View History

2023-08-31 18:55:36 -05:00
#include <iostream>
int main () {
std::cout << "Hello world" << std::endl;
return 0;
}