-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
22 lines (21 loc) · 1019 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { Robot } from "./lib/SmartRobo/Robot.class.js";
(function () {
const robot = new Robot();
robot.reset({
length: 100,
depth: 100,
position: {
x: 50,
y: 6,
direction: "W",
},
})
console.log(robot.status)
robot.move(["R", "f","r", "F", "L", "w", "l","F","F","F","F","F","F","F","F","F","F","r","F","F","F","F","F","F","F"]);
robot.move(["R", "f","r", "F", "L", "w", "l","F","F","F","F","F","F","F","F","F","F","r","F","F","F","F","F","F","F"]);
robot.move(["R", "f","r", "F", "L", "w", "l","F","F","F","F","F","F","F","F","F","F","r","F","F","F","F","F","F","F"]);
robot.move(["R", "f","r", "F", "L", "w", "l","F","F","F","F","F","F","F","F","F","F","r","F","F","F","F","F","F","F"]);
robot.move(["R", "f","r", "F", "L", "w", "l","F","F","F","F","F","F","F","F","F","F","r","F","F","F","F","F","F","F"]);
robot.move(["R", "f","r", "F", "L", "w", "l","F","F","F","F","F","F","F","F","F","F","r","F","F","F","F","F","F","F"]);
console.log(robot.status)
})();