That bothers me, because any green (besides dark green) is often used to show a comment in a program (non compiled part of code). Is there a way for me to change it for my own viewing, or is there a way that it can be changed altogether? I always think of dark purple, maroon, and most green as code comments (as well as italic).
mattallen37 wrote:Is there a way for me to change it for my own viewing, or is there a way that it can be changed altogether? I always think of dark purple, maroon, and most green as code comments (as well as italic).
Not without the use of some pretty powerful hallucinogenics.
- Xander
| My Blog: I'd Rather Be Building Robots (http://botbench.com)
| RobotC 3rd Party Driver Suite: (http://rdpartyrobotcdr.sourceforge.net)
| Some people, when confronted with a problem, think, "I know, I'll use threads,"
| and then two they hav erpoblesms. (@nedbat)
mattallen37 wrote:Very funny, but not exactly what I was looking for.
The answer is no, you can't.
doc-helmut wrote:do not judge until you've tried it
Hehe, spoken like a pharmacist!
- Xander
| My Blog: I'd Rather Be Building Robots (http://botbench.com)
| RobotC 3rd Party Driver Suite: (http://rdpartyrobotcdr.sourceforge.net)
| Some people, when confronted with a problem, think, "I know, I'll use threads,"
| and then two they hav erpoblesms. (@nedbat)
<html>
  <head>
    <title>PHP Test</title>
  </head>
  <body>
  <?php
  echo "Hello World";
  /* echo("Hello World"); works as well, although echo isn't a
  function, but a language construct. In some cases, such
  as when multiple parameters are passed to echo, parameters
  cannot be enclosed in parentheses. */
  ?>
  </body>
</html>
#include <iostream>
class CPerson
{
public:
int age; // yes, it can be negative!
int height; // also can be negative!
int temperature; // cannot be above 2^32-1
int iq; // mine is so high, that even a 32 bit signed int cannot store it
};
CPerson Me;
int main(int argc, char* argv[])
{
std::cout << "Hello World!";
return 0;
}