markov-generator/src/main.cpp

7 lines
99 B
C++
Raw Normal View History

2023-11-14 14:34:06 -06:00
#include <iostream>
int main(void) {
std::cout << "Hello world" << std::endl;
return 0;
}