; (semicolon)

From Microduino Wiki
Jump to: navigation, search
  • ; semicolon

It is used to end a statement.

  • Example:

int a = 13;
  • Note

Forgetting to end a line in a semicolon will result in a compiler error. The error test may be obvious, and refer to a missing semicolon, or it may not. If an impenetrable or seemingly illogical compiler error comes up, one of the first thins to check is a missing semicolon, near the line where the compiler complained.

[Return to Arduino Syntax Manual]