RobotC
1 program
Added 2026-02-12T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Robot C
Provenance: commit 29e4ea41a7 · authored 2026-02-12T10:28:58+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/robotcRelated languages
LLM-contributed programs
Basic Motor Control
Provenance: commit 29e4ea41a7 · authored 2026-02-12T10:28:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
task main()
{
// Move forward for 2 seconds
motor[motorA] = 50;
motor[motorB] = 50;
wait1Msec(2000);
// Turn right for 1 second
motor[motorA] = 50;
motor[motorB] = -50;
wait1Msec(1000);
// Stop motors
motor[motorA] = 0;
motor[motorB] = 0;
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)