I have screenshotted the thing but this forum doesn't let me post the image.
The code is below:
Code:
#include "WPILib.h"
class Robot: public IterativeRobot
{
private:
void RobotInit()
{
}
void AutonomousInit()
{
}
void AutonomousPeriodic()
{
}
void TeleopInit()
{
}
void TeleopPeriodic()
{
}
void TestPeriodic()
{
}
};
START_ROBOT_CLASS(Robot);
The error is: Invalid arguments', line 38, which is the START_ROBOT_CLASS(Robot); line.