Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 502 Bytes

File metadata and controls

38 lines (28 loc) · 502 Bytes

Style Guidelines

General

  1. All files have a single trailing line feed.

    @ thing.md
    foo\n
    - bar<EOF>
    + bar\n<EOF>
  2. No trailing whitespace.

    @ style.md
    fn foo() {
    -    let x = bar();·
    -····
    +    let x = bar();
    +
        println!("{} {}", x, x+1);
    }

Dependencies

  1. Dependency groups:
  • std lib
  • external libs
  • sibling libs
  • internal libs

TODO: Example.