在Windows 11上用WSL2搭建OpenHarmony开发环境:从Ubuntu 20.04配置到RK3568编译一条龙
2026/6/9 3:25:52
#include <iostream> int main() { std::cout << "Hello, World!" << std::endl; // 输出 "Hello, World!" int a = 5, b = 10; int sum = a + b; std::cout << "The sum of " << a << " and " << b << " is " << sum << std::endl; return 0; }