Skip to content

Commit

Permalink
chore: Update introduction.md
Browse files Browse the repository at this point in the history
"the set of all floating point values" is very different from "a set of all floating point values"
  • Loading branch information
mroderick authored Oct 29, 2024
1 parent 26635e1 commit e5e8521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/cars-assemble/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For the sake of this exercise you will only be dealing with:
But this will depend on the systems architecture.
Most modern computers are 64 bit, therefore `int` will be 64 bits in size (value rate of: -9223372036854775808 through 9223372036854775807).

- `float64`: e.g. `0.0`, `3.14`. Contains the set of all 64-bit floating-point numbers.
- `float64`: e.g. `0.0`, `3.14`. Contains a set of all 64-bit floating-point numbers.

- `uint`: e.g. `0`, `255`. An unsigned integer that is the same size as `int` (value range of: 0 through 4294967295 for 32 bits and 0 through 18446744073709551615 for 64 bits)

Expand Down

0 comments on commit e5e8521

Please sign in to comment.