Examples
Below is a snippet of syntax highlighted C code:
/* Hello World */ #includeHere is the same code non-highlighted:
/* Hello World */ #includeBelow is another snippet of syntax highlighted C++ code:
// Create "windowCount" Window objects: int windowCount = 10; Window **windows = new Window *; for (int i = 0; i < windowCount; ++i) { windows = new Window; }In the C++ example, the editor has recognized the keywords int
, new
, and for
. The comment at the beginning is also highlighted in a specific manner to distinguish it from working code.
Read more about this topic: Syntax Highlighting
Famous quotes containing the word examples:
“Histories are more full of examples of the fidelity of dogs than of friends.”
—Alexander Pope (16881744)
“In the examples that I here bring in of what I have [read], heard, done or said, I have refrained from daring to alter even the smallest and most indifferent circumstances. My conscience falsifies not an iota; for my knowledge I cannot answer.”
—Michel de Montaigne (15331592)
“No rules exist, and examples are simply life-savers answering the appeals of rules making vain attempts to exist.”
—André Breton (18961966)