Files
markgerrard e9354a7920 first commit
2026-03-17 20:44:57 +00:00

13 lines
575 B
Markdown

# 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