- Rust Essentials(Second Edition)
- Ivo Balbaert
- 121字
- 2021-07-02 15:30:38
Consulting Rust documentation
The quickest way to find more detailed information about a Rust topic is to browse to the documentation screen of the Standard Library, http://doc.rust-lang.org/std/.
On the left, you can find a listing of all crates available, which you can browse for more details. But most useful is the search box at the top: type in a few letters or a word to get a number of useful references.

Exercises:
Try to change the value of a constant. Of course this is not allowed, what error do you get? (For an example see Chapter2/exercises/change_constant.rs) .
Look up the println! macro in the documentation.
Read the fmt specification and write a program that will print value 3.2f32 as +003.20 (see Chapter2/exercises/formatting.rs ).
Try to change the value of a constant. Of course this is not allowed, what error do you get? (For an example see Chapter2/exercises/change_constant.rs) .
Look up the println! macro in the documentation.
Read the fmt specification and write a program that will print value 3.2f32 as +003.20 (see Chapter2/exercises/formatting.rs ).
推薦閱讀
- 演進式架構(原書第2版)
- 架構不再難(全5冊)
- Visual C++數字圖像模式識別技術詳解
- Practical Data Science Cookbook(Second Edition)
- Twilio Best Practices
- Java加密與解密的藝術(第2版)
- Web開發的貴族:ASP.NET 3.5+SQL Server 2008
- Mastering PHP Design Patterns
- 自然語言處理Python進階
- 現代C++編程實戰:132個核心技巧示例(原書第2版)
- Kubernetes源碼剖析
- SQL Server 2016 從入門到實戰(視頻教學版)
- JavaWeb從入門到精通(視頻實戰版)
- Puppet Cookbook(Third Edition)
- Practical Linux Security Cookbook