bettys-bike-shop

This commit is contained in:
Alexander Heldt
2025-10-30 20:08:25 +01:00
parent 3c64c873ef
commit 17e35b1c6a
10 changed files with 332 additions and 0 deletions

13
bettys-bike-shop/HINTS.md Normal file
View File

@@ -0,0 +1,13 @@
# Hints
## General
- Int and float operators are described in [the language tour][tour].
- Functions for working with ints are defined in the [`gleam/int` module][int].
- Functions for working with floats are defined in the [`gleam/float` module][float].
- Functions for working with strings are defined in the [`gleam/string` module][string].
[tour]: https://gleam.run/book/tour/ints-and-floats.html
[int]: https://hexdocs.pm/gleam_stdlib/gleam/int.html
[float]: https://hexdocs.pm/gleam_stdlib/gleam/float.html
[string]: https://hexdocs.pm/gleam_stdlib/gleam/string.html