We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
$ roscd $ cd sandbox $ roscreate-pkg beginner_tutorials roscpp $ rospack profile $ rospack find beginner_tutorials $ gedit beginner_tutorials/src/helloROS.cpp
-- Add the following lines
#include <iostream> using namespace std; int main() { cout<<"Hello"; return 0; }
--
$ gedit beginner_tutorials/CMakeLists.txt
rosbuild_add_executable(hello src/helloROS.cpp)
$ rosmake beginner_tutorials $ rosrun beginner_tutorials hello