Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Latest commit

 

History

History
16 lines (14 loc) · 351 Bytes

grammar.md

File metadata and controls

16 lines (14 loc) · 351 Bytes

Grammar

  • We do not authorize a declaration of an array without a defined size and no assignment:
int32_t a[];
// Should be int32_t a[5];
// or        int32_t a[] = {1, 2, 3, 4, 5};
  • We are strict with whitespaces (spaces, line breaks,...). For example, we do not authorize this line, since it's badly formated:
int32_t i =
0;