2024-06-18 19:42:33 +08:00

11 lines
560 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 巨集Macros
Rust 的巨集系統非常強大,但也有點難以理解。我們不會教您如何編寫自己的全功能巨集。相反,我們將向您展示如何使用和創建它們。
如果您想了解更多關於編寫自己巨集的知識,可以參考 [macrokata](https://github.com/tfpk/macrokata) 專案,它的練習風格類似於 Rustlings但專注於學習編寫巨集。
## 進一步了解
- [巨集](https://doc.rust-lang.org/book/ch19-06-macros.html)
- [The Little Book of Rust Macros](https://veykril.github.io/tlborm/)