<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: MOM Pt. 004: Writing simple COBOL on MVS3.8 tk4-</title>
	<atom:link href="https://kevindurant.be/2019/07/12/mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4/feed/" rel="self" type="application/rss+xml" />
	<link>https://kevindurant.be/2019/07/12/mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4</link>
	<description>Improving my programming skills step by step. You&#039;re invited!</description>
	<lastBuildDate>Wed, 20 May 2020 17:51:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.9.14</generator>
	<item>
		<title>By: kevindurant</title>
		<link>https://kevindurant.be/2019/07/12/mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4/#comment-2021</link>
		<dc:creator><![CDATA[kevindurant]]></dc:creator>
		<pubDate>Sun, 26 Apr 2020 11:07:04 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=839#comment-2021</guid>
		<description><![CDATA[Hi Anonymous

Thanks for sharing! Sorry about the indentation, I believe it&#039;s the way WordPress works without using real code plugins.

Kind regards
- Kevin]]></description>
		<content:encoded><![CDATA[<p>Hi Anonymous</p>
<p>Thanks for sharing! Sorry about the indentation, I believe it&#8217;s the way WordPress works without using real code plugins.</p>
<p>Kind regards<br />
&#8211; Kevin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>https://kevindurant.be/2019/07/12/mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4/#comment-1959</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Tue, 21 Apr 2020 02:45:26 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=839#comment-1959</guid>
		<description><![CDATA[(I had sent it with proper indentation, I don&#039;t know why it disappeared when I sent it)]]></description>
		<content:encoded><![CDATA[<p>(I had sent it with proper indentation, I don&#8217;t know why it disappeared when I sent it)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>https://kevindurant.be/2019/07/12/mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4/#comment-1958</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Tue, 21 Apr 2020 02:40:44 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=839#comment-1958</guid>
		<description><![CDATA[Ok, I decided to take up this challenge myself.
Strangely enough, I used the distribution of TK4 that comes with Hercules and I was able to use ELSE and even a nested IF statement.   My PROCEDURE DIVISION looks like this:

00051          MAIN-PARAGRAPH.
00052              OPEN INPUT INFILE.
00053              READ INFILE AT END DISPLAY &#039;READY FIZZBUZZ&#039;.
00054              MOVE UP-TO-NUMBER (1) TO N.
00055              CLOSE INFILE.
00056         *
00057              IF N &#062; 0 AND N &#060; 10000
00058                  PERFORM PRINT-FIZZBUZZ UNTIL I GREATER N
00059              ELSE
00060                  DISPLAY &#039;INPUT IS TOO LARGE OR TOO SMALL&#039;.
00061         *
00062              DISPLAY &#039;FIN&#039;.
00063              STOP RUN.
00064         **
00065         **
00066          PRINT-FIZZBUZZ.
00067              DIVIDE I BY 3 GIVING DIV REMAINDER REMAIN-T.
00068              DIVIDE I BY 5 GIVING DIV REMAINDER REMAIN-F.
00069         *
00070              IF REMAIN-T EQUAL ZERO AND REMAIN-F EQUAL ZERO
00071                 DISPLAY &#039;FIZZBUZZ&#039;
00072              ELSE
00073                 IF REMAIN-F EQUAL ZERO
00074                    DISPLAY &#039;BUZZ&#039;
00075                 ELSE
00076                    IF REMAIN-T EQUAL ZERO
00077                       DISPLAY &#039;FIZZ&#039;
00078                    ELSE
00079                       DISPLAY I.
00080         *
00081              ADD 1 TO I.]]></description>
		<content:encoded><![CDATA[<p>Ok, I decided to take up this challenge myself.<br />
Strangely enough, I used the distribution of TK4 that comes with Hercules and I was able to use ELSE and even a nested IF statement.   My PROCEDURE DIVISION looks like this:</p>
<p>00051          MAIN-PARAGRAPH.<br />
00052              OPEN INPUT INFILE.<br />
00053              READ INFILE AT END DISPLAY &#8216;READY FIZZBUZZ&#8217;.<br />
00054              MOVE UP-TO-NUMBER (1) TO N.<br />
00055              CLOSE INFILE.<br />
00056         *<br />
00057              IF N &gt; 0 AND N &lt; 10000<br />
00058                  PERFORM PRINT-FIZZBUZZ UNTIL I GREATER N<br />
00059              ELSE<br />
00060                  DISPLAY &#039;INPUT IS TOO LARGE OR TOO SMALL&#039;.<br />
00061         *<br />
00062              DISPLAY &#039;FIN&#039;.<br />
00063              STOP RUN.<br />
00064         **<br />
00065         **<br />
00066          PRINT-FIZZBUZZ.<br />
00067              DIVIDE I BY 3 GIVING DIV REMAINDER REMAIN-T.<br />
00068              DIVIDE I BY 5 GIVING DIV REMAINDER REMAIN-F.<br />
00069         *<br />
00070              IF REMAIN-T EQUAL ZERO AND REMAIN-F EQUAL ZERO<br />
00071                 DISPLAY &#039;FIZZBUZZ&#039;<br />
00072              ELSE<br />
00073                 IF REMAIN-F EQUAL ZERO<br />
00074                    DISPLAY &#039;BUZZ&#039;<br />
00075                 ELSE<br />
00076                    IF REMAIN-T EQUAL ZERO<br />
00077                       DISPLAY &#039;FIZZ&#039;<br />
00078                    ELSE<br />
00079                       DISPLAY I.<br />
00080         *<br />
00081              ADD 1 TO I.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevindurant</title>
		<link>https://kevindurant.be/2019/07/12/mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4/#comment-247</link>
		<dc:creator><![CDATA[kevindurant]]></dc:creator>
		<pubDate>Wed, 21 Aug 2019 12:56:39 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=839#comment-247</guid>
		<description><![CDATA[Hi Gerard!

Sounds like a very cool setup! I&#039;m thinking of getting a refurbished computer and run TK4- on it too.

Hercprt looks really cool! I&#039;ll take a look! I never thought about exploring the net for third-party software, thanks for the tip :)

Inderdaad, groetjes!
- Kevin, Ieper.]]></description>
		<content:encoded><![CDATA[<p>Hi Gerard!</p>
<p>Sounds like a very cool setup! I&#8217;m thinking of getting a refurbished computer and run TK4- on it too.</p>
<p>Hercprt looks really cool! I&#8217;ll take a look! I never thought about exploring the net for third-party software, thanks for the tip 🙂</p>
<p>Inderdaad, groetjes!<br />
&#8211; Kevin, Ieper.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>https://kevindurant.be/2019/07/12/mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4/#comment-246</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Wed, 21 Aug 2019 12:45:27 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=839#comment-246</guid>
		<description><![CDATA[Yes I have TK4- on an ubuntu linux 16.04 LTS old (2005 !!) IBM desktop.
I do TSO from my windows desktop 
I have purchased  hercprt (hercules remote print spooler) for looking at output in PDF format on Windows. You can use hercprt also for free.  
kind 
Groetjes,  (.be ??)
Gerard, Johannesburg.]]></description>
		<content:encoded><![CDATA[<p>Yes I have TK4- on an ubuntu linux 16.04 LTS old (2005 !!) IBM desktop.<br />
I do TSO from my windows desktop<br />
I have purchased  hercprt (hercules remote print spooler) for looking at output in PDF format on Windows. You can use hercprt also for free.<br />
kind<br />
Groetjes,  (.be ??)<br />
Gerard, Johannesburg.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevindurant</title>
		<link>https://kevindurant.be/2019/07/12/mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4/#comment-245</link>
		<dc:creator><![CDATA[kevindurant]]></dc:creator>
		<pubDate>Wed, 21 Aug 2019 06:55:31 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=839#comment-245</guid>
		<description><![CDATA[Hi Gerard!

You&#039;re right! I didn&#039;t really talk about my other defined variables, I should have mentioned them too. I blame the editor for this mistake ;)

My interest in MVS/Hercules and blogging about it is definitely here to stay! I am glad there&#039;s still people interested in reading such beginner posts about MVS and Hercules!

Are you working on your own mainframe too?

Kind regards,
- Kevin]]></description>
		<content:encoded><![CDATA[<p>Hi Gerard!</p>
<p>You&#8217;re right! I didn&#8217;t really talk about my other defined variables, I should have mentioned them too. I blame the editor for this mistake 😉</p>
<p>My interest in MVS/Hercules and blogging about it is definitely here to stay! I am glad there&#8217;s still people interested in reading such beginner posts about MVS and Hercules!</p>
<p>Are you working on your own mainframe too?</p>
<p>Kind regards,<br />
&#8211; Kevin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerard Guinee</title>
		<link>https://kevindurant.be/2019/07/12/mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4/#comment-244</link>
		<dc:creator><![CDATA[Gerard Guinee]]></dc:creator>
		<pubDate>Wed, 21 Aug 2019 06:37:46 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=839#comment-244</guid>
		<description><![CDATA[I would suggest for clarity that in the paragraph &#039;Looping in Cobol&#039;  you would start with something like: &#039;In addition to the above mentioned text working storage variables I have defined 3 numeric variables..... etc&#039;

Otherwise nice to see someone who likes the hercules / mvs environment.]]></description>
		<content:encoded><![CDATA[<p>I would suggest for clarity that in the paragraph &#8216;Looping in Cobol&#8217;  you would start with something like: &#8216;In addition to the above mentioned text working storage variables I have defined 3 numeric variables&#8230;.. etc&#8217;</p>
<p>Otherwise nice to see someone who likes the hercules / mvs environment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramsae</title>
		<link>https://kevindurant.be/2019/07/12/mom-pt-004-writing-simple-cobol-on-mvs3-8-tk4/#comment-227</link>
		<dc:creator><![CDATA[Ramsae]]></dc:creator>
		<pubDate>Fri, 12 Jul 2019 23:52:03 +0000</pubDate>
		<guid isPermaLink="false">https://kevindurant.be/?p=839#comment-227</guid>
		<description><![CDATA[Very interesting post and glad you are back! (Also, Calcul does sound very cool!)]]></description>
		<content:encoded><![CDATA[<p>Very interesting post and glad you are back! (Also, Calcul does sound very cool!)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using disk: enhanced 
Minified using disk

Served from: kevindurant.be @ 2020-05-22 02:10:14 by W3 Total Cache
-->