···55gleam test # Run the tests
66```
7788-This example shows how to route requests to different handlers based on the
99-request path and method.
88+This example shows how to serve static assets. In this case we'll serve
99+a CSS file for page styling and a JavaScript file for updating the content
1010+of the HTML page, but the same techniques can also be used for other file types.
10111112This example is based off of the ["Hello, World!" example][hello], so read that
1213one first. The additions are detailed here and commented in the code.
+1-2
examples/07-logging/README.md
···55gleam test # Run the tests
66```
7788-This example shows how to route requests to different handlers based on the
99-request path and method.
88+This example shows how to log messages using the BEAM logger.
1091110This example is based off of the ["routing" example][routing], so read that
1211one first. The additions are detailed here and commented in the code.