Skip to content

Commit

Permalink
feat: Display report
Browse files Browse the repository at this point in the history
  • Loading branch information
maiisthebest committed Mar 3, 2024
1 parent 9340afc commit 845a871
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/RobotSimulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ class RobotSimulator {
break;

case "REPORT":
return this.report();
const report = this.report();
console.log(report);

return report;
}
}
}
Expand Down

0 comments on commit 845a871

Please sign in to comment.