Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translate ch03-02-data-types.md via GitLocalize #1288

Merged
merged 8 commits into from
Oct 16, 2023
4 changes: 2 additions & 2 deletions rustbook-ru/src/ch03-02-data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let guess: u32 = "42".parse().expect("Not a number!");

Длина | Со знаком | Без знака
--- | --- | ---
8-бит | `i8` | `u8`
8 бит | `i8` | `u8`
16 бит | `i16` | `u16`
32 бита | `i32` | `u32`
64 бита | `i64` | `u64`
Expand All @@ -49,7 +49,7 @@ let guess: u32 = "42".parse().expect("Not a number!");
--- | ---
Десятичный | `98_222`
Шестнадцатеричный | `0xff`
Восьмеричный | `0o77`
восьмеричный | `0o77`
Двоичный | `0b1111_0000`
Байт (только `u8`) | `b'A'`

Expand Down
Loading