harper-comments 2.0.0

The language checker for developers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Top-level module documentation.

/// Main entry point.
pub fn main() void {
    // Regular comment.
    const x: i32 = 42;
    _ = x;
}

/// A simple struct.
pub const MyStruct = struct {
    /// A field.
    value: i32,
};