Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 320 Bytes

File metadata and controls

17 lines (13 loc) · 320 Bytes

Agent instructions

Code style

  • Always use braces for control flow. Do not write single-statement if/else/for/while on one line without braces.

    Don't:

    if (elem instanceof String s) out.add(s);

    Do:

    if (elem instanceof String s) {
        out.add(s);
    }