Syntax Highlighting - Examples

Examples

Below is a snippet of syntax highlighted C code:

/* Hello World */ #include #include int main { printf("Hello World\n"); return 0; }

Here is the same code non-highlighted:

/* Hello World */ #include #include int main { printf("Hello World\n"); return 0; }


Below 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:

    There are many examples of women that have excelled in learning, and even in war, but this is no reason we should bring ‘em all up to Latin and Greek or else military discipline, instead of needle-work and housewifry.
    Bernard Mandeville (1670–1733)

    It is hardly to be believed how spiritual reflections when mixed with a little physics can hold people’s attention and give them a livelier idea of God than do the often ill-applied examples of his wrath.
    —G.C. (Georg Christoph)

    No rules exist, and examples are simply life-savers answering the appeals of rules making vain attempts to exist.
    André Breton (1896–1966)