#include / header
Applies to: cpp
#include pastes a header's declarations into your file before compiling, giving access to library or your
own functions and types. Standard headers use angle brackets; your own use quotes.
#include <vector> // standard library
#include "robot.h" // your own header
See also: namespace