<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic What's a house proper? I don in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029950#M110313</link>
    <description>&lt;P&gt;What's a house proper? I don't know if my house has one?&lt;/P&gt;

&lt;P&gt;Jim ;)&lt;/P&gt;</description>
    <pubDate>Sat, 20 Dec 2014 14:12:05 GMT</pubDate>
    <dc:creator>jimdempseyatthecove</dc:creator>
    <dc:date>2014-12-20T14:12:05Z</dc:date>
    <item>
      <title>How to get multi-colors ?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029944#M110307</link>
      <description>&lt;P&gt;Of course we can get that with GRAPHICS routines, but what about regular text from Write or Print&lt;/P&gt;

&lt;P&gt;statements?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Is there a trick that will allow other colors besides the regular white on black stuff?&lt;/P&gt;

&lt;P&gt;I am assuming that a regular console output window is used,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Naturally if the BACKGROUND is white, one would want to use some other color for the letters.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2014 22:28:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029944#M110307</guid>
      <dc:creator>WSinc</dc:creator>
      <dc:date>2014-12-19T22:28:28Z</dc:date>
    </item>
    <item>
      <title>I had high hopes for this:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029945#M110308</link>
      <description>&lt;P&gt;I had high hopes for this:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;program P
&amp;nbsp;&amp;nbsp; use IFWIN
&amp;nbsp;&amp;nbsp; implicit none
&amp;nbsp;&amp;nbsp; integer(HANDLE) hConsoleOutput
&amp;nbsp;&amp;nbsp; integer(WORD) wAttribute
&amp;nbsp;&amp;nbsp; character(*), parameter :: mess = 'Hello, world'
&amp;nbsp;&amp;nbsp; integer(DWORD) nLength
&amp;nbsp;&amp;nbsp; type(T_CONSOLE_SCREEN_BUFFER_INFO) ScreenBufferInfo
&amp;nbsp;&amp;nbsp; integer(BOOL) result4
&amp;nbsp;&amp;nbsp; integer(DWORD) lpNumberOfAttrsWritten

&amp;nbsp;&amp;nbsp; hConsoleOutput = GetStdHandle(STD_OUTPUT_HANDLE)
&amp;nbsp;&amp;nbsp; if(hCOnsoleOutput == INVALID_HANDLE_VALUE) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write(*,'(a,i0)') 'GetStdHandle failed with error code ',GetLastError()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stop
&amp;nbsp;&amp;nbsp; end if
&amp;nbsp;&amp;nbsp; wAttribute = iany([FOREGROUND_RED,FOREGROUND_GREEN,FOREGROUND_INTENSITY, &amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BACKGROUND_BLUE])
&amp;nbsp;&amp;nbsp; nLength = len(mess)+1
&amp;nbsp;&amp;nbsp; result4 = GetConsoleScreenBufferInfo(hConsoleOutput,ScreenBufferInfo)
&amp;nbsp;&amp;nbsp; if(result4 == 0) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write(*,'(a,i0)') 'GetConsoleScreenBufferInfo failed with error code ' &amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,GetLastError()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stop
&amp;nbsp;&amp;nbsp; end if
&amp;nbsp;&amp;nbsp; result4 = FillConsoleOutputAttribute(hConsoleOutput,wAttribute, &amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nLength,ScreenBufferInfo%dwCursorPosition,%LOC(lpNumberOfAttrsWritten))
&amp;nbsp;&amp;nbsp; if(result4 == 0) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write(*,'(a,i0)') 'FillConsoleOutputAttribute failed with error code ' &amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,GetLastError()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stop
&amp;nbsp;&amp;nbsp; end if
&amp;nbsp;&amp;nbsp; write(*,'(a)') mess
end program P
&lt;/PRE&gt;

&lt;P&gt;But the only character that picks up our attributes is the one after 'Hello, world'. Evidently ifort sidesteps console attributes when it outputs to the screen. Probably you can write your output to a NUL-terminated string and use a Windows Console function to do the output, but this seems to be outside the parameters of the problem statement.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2014 23:09:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029945#M110308</guid>
      <dc:creator>JVanB</dc:creator>
      <dc:date>2014-12-19T23:09:59Z</dc:date>
    </item>
    <item>
      <title>OK, what you can do is write</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029946#M110309</link>
      <description>&lt;P&gt;OK, what you can do is write the stuff out in Fortran and then set the attributes retroactively. You have to be careful because if the&amp;nbsp;console buffer has been scrolled, the coordinates of the stuff you have written have changed. This program takes that possibility into account:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;program P
&amp;nbsp;&amp;nbsp; use IFWIN
&amp;nbsp;&amp;nbsp; implicit none
&amp;nbsp;&amp;nbsp; integer(HANDLE) hConsoleOutput
&amp;nbsp;&amp;nbsp; integer(WORD) wAttribute
&amp;nbsp;&amp;nbsp; character(*), parameter :: mess = 'Hello, world'
&amp;nbsp;&amp;nbsp; integer(DWORD) nLength
&amp;nbsp;&amp;nbsp; type(T_CONSOLE_SCREEN_BUFFER_INFO) ScreenBufferInfo
&amp;nbsp;&amp;nbsp; type(T_COORD) dwWriteCoord
&amp;nbsp;&amp;nbsp; integer(BOOL) result4
&amp;nbsp;&amp;nbsp; integer(DWORD) lpNumberOfAttrsWritten

&amp;nbsp;&amp;nbsp; hConsoleOutput = GetStdHandle(STD_OUTPUT_HANDLE)
&amp;nbsp;&amp;nbsp; if(hCOnsoleOutput == INVALID_HANDLE_VALUE) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write(*,'(a,i0)') 'GetStdHandle failed with error code ',GetLastError()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stop
&amp;nbsp;&amp;nbsp; end if
&amp;nbsp;&amp;nbsp; wAttribute = iany([FOREGROUND_RED,FOREGROUND_GREEN,FOREGROUND_INTENSITY, &amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BACKGROUND_BLUE])
&amp;nbsp;&amp;nbsp; nLength = len(mess)
&amp;nbsp;&amp;nbsp; result4 = GetConsoleScreenBufferInfo(hConsoleOutput,ScreenBufferInfo)
&amp;nbsp;&amp;nbsp; if(result4 == 0) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write(*,'(a,i0)') 'GetConsoleScreenBufferInfo failed with error code ' &amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,GetLastError()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stop
&amp;nbsp;&amp;nbsp; end if
&amp;nbsp;&amp;nbsp; dwWriteCoord = ScreenBufferInfo%dwCursorPosition
&amp;nbsp;&amp;nbsp; write(*,'(a)') mess
&amp;nbsp;&amp;nbsp; result4 = GetConsoleScreenBufferInfo(hConsoleOutput,ScreenBufferInfo)
&amp;nbsp;&amp;nbsp; if(result4 == 0) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write(*,'(a,i0)') 'GetConsoleScreenBufferInfo failed with error code ' &amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,GetLastError()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stop
&amp;nbsp;&amp;nbsp; end if
&amp;nbsp;&amp;nbsp; if(dwWriteCoord%Y == ScreenBufferInfo%dwCursorPosition%Y)then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dwWriteCoord%Y = dwWriteCoord%Y - 1
&amp;nbsp;&amp;nbsp; end if
&amp;nbsp;&amp;nbsp; result4 = FillConsoleOutputAttribute(hConsoleOutput,wAttribute, &amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nLength,dwWriteCoord,%LOC(lpNumberOfAttrsWritten))
&amp;nbsp;&amp;nbsp; if(result4 == 0) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write(*,'(a,i0)') 'FillConsoleOutputAttribute failed with error code ' &amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,GetLastError()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stop
&amp;nbsp;&amp;nbsp; end if
end program P
&lt;/PRE&gt;

&lt;P&gt;Now, if your write has scrolled the console buffer by more than one line you will need more complex logic to detect and handle it.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Dec 2014 23:31:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029946#M110309</guid>
      <dc:creator>JVanB</dc:creator>
      <dc:date>2014-12-19T23:31:12Z</dc:date>
    </item>
    <item>
      <title>PROGRAM ICanCodeARainbow</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029947#M110310</link>
      <description>&lt;PRE class="brush:fortran;"&gt;PROGRAM ICanCodeARainbow
  USE IFWIN
  IMPLICIT NONE
  INTEGER(BOOL) :: brc
  INTEGER(HANDLE) :: console_handle
  
  console_handle = GetStdHandle(STD_OUTPUT_HANDLE)
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,  &amp;amp;
      INT(IANY([FOREGROUND_RED, FOREGROUND_INTENSITY]), WORD) )
  PRINT "(A)", 'Red and'
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_RED]), WORD) )
  PRINT "(A)", 'yellow and'
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_RED, FOREGROUND_BLUE]), WORD) )
  PRINT "(A)", 'pink-ish and '
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_GREEN]), WORD) )
  PRINT "(A)", 'green,'
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_BLUE, FOREGROUND_RED]), WORD) )
  PRINT "(A)", 'purple (sort of) and '
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_RED]), WORD) )
  PRINT "(A)", 'a bit orange and'
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_BLUE, FOREGROUND_INTENSITY]), WORD) )
  PRINT "(A)", 'blue'
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_BLUE, FOREGROUND_RED, FOREGROUND_GREEN]), WORD) )
  PRINT "(A)", 'I can code a rainbow '
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([BACKGROUND_BLUE, FOREGROUND_GREEN, FOREGROUND_INTENSITY]), WORD) )
  PRINT "(A)", 'and stuff your prompt up too...'
END PROGRAM ICanCodeARainbow
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Dec 2014 00:28:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029947#M110310</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2014-12-20T00:28:23Z</dc:date>
    </item>
    <item>
      <title>OK, I ran this and it worked</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029948#M110311</link>
      <description>&lt;P&gt;OK, I ran this and it worked -&lt;/P&gt;

&lt;P&gt;However, should i assume that all the characters on a given line have to be the SAME color?&lt;/P&gt;

&lt;P&gt;Or is there some way to get mixed colors on the same line?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Dec 2014 00:58:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029948#M110311</guid>
      <dc:creator>WSinc</dc:creator>
      <dc:date>2014-12-20T00:58:02Z</dc:date>
    </item>
    <item>
      <title>Try using non-advancing</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029949#M110312</link>
      <description>&lt;P&gt;Try using non-advancing output and FLUSH.&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;PROGRAM ICanCodeARainbow
  USE IFWIN
  USE, INTRINSIC :: ISO_FORTRAN_ENV, ONLY: OUTPUT_UNIT
  IMPLICIT NONE
  INTEGER(BOOL) :: brc
  INTEGER(HANDLE) :: console_handle
  CHARACTER(*), PARAMETER :: fmt = "(A)"  
  
  console_handle = GetStdHandle(STD_OUTPUT_HANDLE)
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,  &amp;amp;
      INT(IANY([FOREGROUND_RED, FOREGROUND_INTENSITY]), WORD) )
  WRITE (OUTPUT_UNIT, fmt, ADVANCE='NO') 'Red and '
  FLUSH (OUTPUT_UNIT)
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_RED, FOREGROUND_GREEN, FOREGROUND_INTENSITY]), WORD) )
  WRITE (OUTPUT_UNIT, fmt, ADVANCE='NO') 'yellow and '
  FLUSH (OUTPUT_UNIT)
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_RED, FOREGROUND_BLUE, FOREGROUND_INTENSITY]), WORD) )
  WRITE (OUTPUT_UNIT, fmt, ADVANCE='NO') 'pink-ish and '
  FLUSH (OUTPUT_UNIT)
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_GREEN]), WORD) )
  WRITE (OUTPUT_UNIT, fmt, ADVANCE='YES') 'green,'
  
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_BLUE, FOREGROUND_RED]), WORD) )
  WRITE (OUTPUT_UNIT, fmt, ADVANCE='NO') 'purple (sort of) and '
  FLUSH (OUTPUT_UNIT)
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_RED]), WORD) )
  WRITE (OUTPUT_UNIT, fmt, ADVANCE='NO') 'a bit orange and '
  FLUSH (OUTPUT_UNIT)
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_BLUE, FOREGROUND_INTENSITY]), WORD) )
  WRITE (OUTPUT_UNIT, fmt, ADVANCE='YES') 'blue'
  
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([FOREGROUND_BLUE, FOREGROUND_RED, FOREGROUND_GREEN]), WORD) )
  WRITE (OUTPUT_UNIT, fmt, ADVANCE='NO') 'I can code a rainbow '
  FLUSH (OUTPUT_UNIT)
  brc = SetConsoleTextAttribute(  &amp;amp;
      console_handle,   &amp;amp;
      INT(IANY([BACKGROUND_BLUE, FOREGROUND_GREEN, FOREGROUND_INTENSITY]), WORD) )
  WRITE (OUTPUT_UNIT, fmt, ADVANCE='YES') 'and stuff your prompt up too...'
END PROGRAM ICanCodeARainbow
&lt;/PRE&gt;

&lt;P&gt;I'm not happy with my orange.&amp;nbsp; Perhaps it is fortunate that I'm spending today just oiling the deck, and not painting the house proper.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Dec 2014 02:53:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029949#M110312</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2014-12-20T02:53:27Z</dc:date>
    </item>
    <item>
      <title>What's a house proper? I don</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029950#M110313</link>
      <description>&lt;P&gt;What's a house proper? I don't know if my house has one?&lt;/P&gt;

&lt;P&gt;Jim ;)&lt;/P&gt;</description>
      <pubDate>Sat, 20 Dec 2014 14:12:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029950#M110313</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2014-12-20T14:12:05Z</dc:date>
    </item>
    <item>
      <title>It is the bright blue stick</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029951#M110314</link>
      <description>&lt;P&gt;It is the bright blue stick that is holding up the wall of my house in the attached secret plans (encoded in an ancient language so that only readers of this forum can decipher them).&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Dec 2014 21:44:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029951#M110314</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2014-12-20T21:44:56Z</dc:date>
    </item>
    <item>
      <title>+1 Ian :-)
 </title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029952#M110315</link>
      <description>&lt;P&gt;+1 Ian :-)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Dec 2014 23:53:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029952#M110315</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2014-12-20T23:53:49Z</dc:date>
    </item>
    <item>
      <title>Other than the daft syntax</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029953#M110316</link>
      <description>&lt;P&gt;Other than the daft syntax error, I like it!&lt;/P&gt;</description>
      <pubDate>Sun, 21 Dec 2014 00:28:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029953#M110316</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-12-21T00:28:53Z</dc:date>
    </item>
    <item>
      <title>Great!
Jim</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029954#M110317</link>
      <description>&lt;P&gt;Great! The stick props the house up, thus house proper.&lt;/P&gt;

&lt;P&gt;Jim&lt;/P&gt;</description>
      <pubDate>Sun, 21 Dec 2014 14:23:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029954#M110317</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2014-12-21T14:23:00Z</dc:date>
    </item>
    <item>
      <title>Quote:jimdempseyatthecove</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029955#M110318</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;jimdempseyatthecove wrote:&lt;BR /&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Great! The stick props the house up, thus house proper.&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;And, in the name of interproppability, we shall not quibble about the un-doubled p in Ian's "propper".&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Dec 2014 16:14:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029955#M110318</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-12-21T16:14:28Z</dc:date>
    </item>
    <item>
      <title>If its at a house of ill</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029956#M110319</link>
      <description>&lt;P&gt;If its at a house of ill repute, would it still be proper?&lt;/P&gt;

&lt;P&gt;Maybe we should let it fall down?&lt;/P&gt;

&lt;P&gt;Hmm- what was this about originally ? - I forgot ............&lt;/P&gt;</description>
      <pubDate>Sun, 21 Dec 2014 16:43:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-get-multi-colors/m-p/1029956#M110319</guid>
      <dc:creator>WSinc</dc:creator>
      <dc:date>2014-12-21T16:43:21Z</dc:date>
    </item>
  </channel>
</rss>

