<div class="container">
<div class="title">
- <h2>Rewriting our code</h2>
+ <h2>Rewriting your code</h2>
</div>
<p>
// Collect routes from all packages.
router->collect_routes();
- // Create a TCP server out of our router.
+ // Create a TCP server out of your router.
app := http.server.tcp(&router);
// Serve on port 8000.
<p>
Now that the project is set up and Raylib is installed, you can start writing some code.
- Lets start by testing our environment by creating a simple window with a gray background.
+ Let's start by testing the environment by creating a simple window with a gray background.
Write the following code in a file called <code>game.onyx</code>.
</p>
// Reset the score.
score = 0;
- // Put our player in the middle of the screen.
+ // Put the player in the middle of the screen.
player = .{
x = 600,
y = 450,