- Добавил: literator
- Дата: 31-01-2021, 16:45
- Комментариев: 0

Автор: Claudia Alves, Rufus Stewart
Издательство: Memlnc
Год: 2021.01.24
Страниц: 336
Язык: английский
Формат: pdf, azw3, rtf, epub
Размер: 10.1 MB
After reading this book, you'll be ready to build Rust applications! Rust is a statically and strongly typed systems programming language. statically means that all types are known at compile-time, strongly means that these types are designed to make it harder to write incorrect programs. A successful compilation means you have a much better guarantee of correctness than with a cowboy language like C. systems means generating the best possible machine code with full control of memory use. So the uses are pretty hardcore: operating systems, device drivers and embedded systems that might not even have an operating system. However, it's actually a very pleasant language to write normal application code in as well.