Forgive me if this has already been posted, as this is my first time here.
Once I registered for this site and went on to see the tutorial on the Onboarding puzzle, and I noticed the slightest annoyance. It isn’t anything major, it just seems off, but the formatting in the tutorial window is not identical to that in the default script, or the one that is shown when the puzzle initializes. In the tutorial box, the brackets are used in a compact way, where the brackets are inline with the lines that the functions end or start on, as such:
if (dist1 < dist2) { Console.WriteLine(enemy1); } else { Console.WriteLine(enemy2); }
In the script shown when the puzzle initializes, it is not done the same way. Instead, the brackets are used in a more spaced out, and neat manner, like so:
if (dist1 < dist2) { Console.WriteLine(enemy1); } else { Console.WriteLine(enemy2); }
Once again, nothing major, just a little odd that it would be like this, even if it is intentional.