color of code in codetags
Posted: 05 Oct 2010, 18:18
Code: Select all
All the code that is in codetags is green.
Give a child a robot, he'll play for an hour. Teach him to build, and he'll play forever.
https://mindboards.org:443/
Code: Select all
All the code that is in codetags is green.
Not without the use of some pretty powerful hallucinogenics.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).
The answer is no, you can't.mattallen37 wrote:Very funny, but not exactly what I was looking for.
Hehe, spoken like a pharmacist!doc-helmut wrote:do not judge until you've tried it
Pretty good stuff.doc-helmut wrote:do not judge until you've tried it
Code: Select all
<head>
<body>
<heart>
<title>Hello, Person.</title>
</heart>
</body>
</head>
<TAIL>
TAIL2
Code: Select all
<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>
Code: Select all
#include <stdio.h>
int main(int argc, char* argv[])
{
printf("Hello World!");
return 0;
}
Code: Select all
#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;
}