Files
ros2bookcode/chapt1/hello_world.cpp
2023-12-14 22:37:46 +08:00

7 lines
96 B
C++

#include "iostream"
int main()
{
std::cout << "Hello World !" << std::endl;
return 0;
}