#ifndef ROBOTICS_H
#define ROBOTICS_H

void moveRobotForward(int steps){
	std::cout<<"[LIBRARY]: The robot moved "<<steps<<" steps forward!"<<endl;
}

#endif
