#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
return 0;
}
我当前的 Ubuntu 版本是 17.10
我将上述 C++ 程序保存在外部硬盘上,并用 Sublime Text 2 打开它。代码编译成功,但运行它时出现以下两个错误:
bash: -c: line 0: unexpected EOF while looking for matching `''
bash: -c: line 1: syntax error: unexpected end of file
[Finished in 0.0s with exit code 1]
如果我保存它并在硬盘以外的任何地方运行它,问题就会消失。
这里发生了什么事?