<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JugglerShu.Net &#187; Ruby</title>
	<atom:link href="http://programming.jugglershu.net/wp/?cat=69&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://programming.jugglershu.net/wp</link>
	<description>Nothing But Programming</description>
	<lastBuildDate>Wed, 15 Apr 2020 08:11:15 +0000</lastBuildDate>
	<language>ja</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.9.40</generator>
	<item>
		<title>Rubyで++演算子</title>
		<link>http://programming.jugglershu.net/wp/?p=610</link>
		<comments>http://programming.jugglershu.net/wp/?p=610#comments</comments>
		<pubDate>Tue, 29 Sep 2009 23:52:00 +0000</pubDate>
		<dc:creator><![CDATA[shu]]></dc:creator>
				<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://programming.jugglershu.net/wp/?p=610</guid>
		<description><![CDATA[Rubyでは++演算子でインクリメントできない。結構とまどう。でも実はRubyは++演算子なしでプログラムが組めるようになっている、と考えたほうがいいのかもしれない。++がほしいのはCとかならwhileとかforとか。Rubyでは++を用いてループ処理をあまりしないっぽい。というかそうやるとちょっとRubyのいいところがなくなってしまいそうな感じはする。++が必要になったら、ちょっとやり方が違って <a class="more-link" href="http://programming.jugglershu.net/wp/?p=610">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Rubyでは++演算子でインクリメントできない。結構とまどう。<br />でも実はRubyは++演算子なしでプログラムが組めるようになっている、と考えたほうがいいのかもしれない。<br />++がほしいのはCとかならwhileとかforとか。<br />Rubyでは++を用いてループ処理をあまりしないっぽい。というかそうやるとちょっとRubyのいいところがなくなってしまいそうな感じはする。<br />++が必要になったら、ちょっとやり方が違っていると考えてもいいかも</p>
]]></content:encoded>
			<wfw:commentRss>http://programming.jugglershu.net/wp/?feed=rss2&#038;p=610</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rubyの真偽</title>
		<link>http://programming.jugglershu.net/wp/?p=611</link>
		<comments>http://programming.jugglershu.net/wp/?p=611#comments</comments>
		<pubDate>Tue, 29 Sep 2009 09:53:00 +0000</pubDate>
		<dc:creator><![CDATA[shu]]></dc:creator>
				<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://programming.jugglershu.net/wp/?p=611</guid>
		<description><![CDATA[Rubyのif文などでは、0とかはしっかり==で判定しないといけないらしい。 &#60;code&#62;&#60;br&#62;condition = 1&#60;br&#62;if condition&#60;br&#62;puts &#34;condition is true&#34;&#60;br&#62;end&#60;br&#62;&#60;/code&#62; これは動かない &#60;code&#62;&#038;lt <a class="more-link" href="http://programming.jugglershu.net/wp/?p=611">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Rubyのif文などでは、0とかはしっかり==で判定しないといけないらしい。
<pre>&lt;code&gt;&lt;br&gt;condition = 1&lt;br&gt;if condition&lt;br&gt;puts &quot;condition is true&quot;&lt;br&gt;end&lt;br&gt;&lt;/code&gt;</pre>
<p>これは動かない</p>
<pre>&lt;code&gt;&lt;br&gt;condition = 1&lt;br&gt;if 1 == condition&lt;br&gt;puts &quot;condition is true&quot;&lt;br&gt;end&lt;br&gt;&lt;/code&gt;</pre>
<p>が正しい</p>
</p>]]></content:encoded>
			<wfw:commentRss>http://programming.jugglershu.net/wp/?feed=rss2&#038;p=611</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
