การเชื่อมต่อ Virtual studio code เข้ากับ WSL
mkdir test_project





Last updated
Was this helpful?
mkdir test_project





Last updated
Was this helpful?
Was this helpful?
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
vector<string> msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"};
for (const string& word : msg)
{
cout << word << " ";
}
cout << endl;
}g++ hello_world.cpp -o hello
ls
./hello