Fix brainfuck usage message

This commit is contained in:
2019-05-25 22:21:58 +03:00
parent 87b7bddd71
commit d931a88659

View File

@@ -46,7 +46,7 @@ struct bf_context_t {
int main(int argc, char* argv[]) {
if (argc < 2) {
std::cout << "Usage: " << argv[0] << std::endl;
std::cout << "Usage: " << argv[0] << " [BRAINFUCK FILE]" << std::endl;
return 1;
}