You are here

This is a test

8 posts / 0 new
Last post
tomany's picture
Offline
Joined: 09/06/2016 - 16:15
This is a test

Test topic

AdminJeff's picture
Offline
Joined: 07/28/2009 - 13:30
reply to a test comment

reply to a test comment

neale's picture
Offline
Joined: 07/31/2009 - 15:14
Test reply to a reply

Just that.

neale's picture
Offline
Joined: 07/31/2009 - 15:14
indent?

I notice no indenting, which was a feature of dubious value previously.

bwiernik's picture
Offline
Joined: 01/30/2014 - 19:39
I would regard it as a

I would regard it as a feature with negative value--it was much more confusing to read the threads with indenting.

bwiernik's picture
Offline
Joined: 01/30/2014 - 19:39
Though I am now seeing

Though I am now seeing indenting...

AdminJeff's picture
Offline
Joined: 07/28/2009 - 13:30
code test

this is a code test

mydata$ageT1[ is.na(mydata$ageT1) ] <- -999
mydata$ageT2[ is.na(mydata$ageT2) ] <- -999

this is plain text:

mydata$ageT1[ is.na(mydata$ageT1) ] <- -999
mydata$ageT2[ is.na(mydata$ageT2) ] <- -999

AdminJeff's picture
Offline
Joined: 07/28/2009 - 13:30
another test
      /* Initialize some variables using C style comments
           $a - contains a-coefficient
           $b - contains b-coefficient
           $x - value we are evaluating
           $y - result from evaluating equation */
      $a = 1; $b = 2; $x = 1;
      $y = $a * $x + $b;
      if ( $y < 5 )                // C++ style comment, check if y<5
      {
              # Shell style comment, display something when y<5
              echo "Guess what?  y is less than 5!";
      }