RoboMind is a programming language created in 2005.
#1760on PLDB | 19Years Old |
RoboMind is a simple educational programming environment with its own scripting language that allows beginners to learn the basics of computer science by programming a simulated robot. In addition to introducing common programming techniques, it also aims at offering insights in robotics and artificial intelligence. RoboMind is available as stand-alone application for Windows, Linux and Mac OS X. Read more on Wikipedia...
paintWhite
repeat(4) {
forward(2)
right
}
follow
procedure follow{
if(frontIsWhite){
forward(1)
}
else if(rightIsWhite){
right
}
else if(leftIsWhite){
left
}
else{
end
}
follow
}