When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.
5 messages · Page 1 of 1 (latest)
When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.
one second I forgot to put in code
#include <iostream>
#include "include/board.h"
// Tic Tac Toe
int main() {
board e(std::array<char, 9>{'-', '-', '-', '-', '-', '-', '-', '-', '-'});
};
@spiral oasis
Note: Make sure to use back-ticks (`) and not quotes (')
Note: Make sure to specify a highlighting language, e.g. `cpp`, after the back-ticks
```cpp
int main() {}
```
int main() {}
#include <iostream>
#include "include/board.h"
// Tic Tac Toe
int main() {
board e(std::array<char, 9>{'-', '-', '-', '-', '-', '-', '-', '-', '-'});
};