Comments
Ferret supports single-line and block comments.
Single-Line
Section titled “Single-Line”// Parse command-line args first.let mode = "run"/*Current limitation:- only llvm backend is enabled in CLI commands*/fn main() {}Practical Rule
Section titled “Practical Rule”Use comments to explain intent or constraints, not obvious line-by-line behavior.