import ch.aplu.nxt.*; class exemple { exemple() { TurtleRobot monrobot = new TurtleRobot(); for(int i=0; i<6; i++) { monrobot.forward(50); monrobot.left(60); } monrobot.exit(); } public static void main(String[] args) { new exemple(); } }