diff options
Diffstat (limited to 'source/arduino/semicolon.rst')
-rw-r--r-- | source/arduino/semicolon.rst | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/source/arduino/semicolon.rst b/source/arduino/semicolon.rst index b3cc8c4..3230819 100644 --- a/source/arduino/semicolon.rst +++ b/source/arduino/semicolon.rst @@ -1,16 +1,11 @@ -.. _arduino-semicolon: - -; semicolon -=========== - -Used to end a statement. - +.. highlight:: cpp +.. _arduino-semicolon: -Example -~~~~~~~ +Semicolon (;) +============= -:: +Used to end a line of code. Example:: int a = 13; |