<?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>L#</title>
	<atom:link href="http://levifikri.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://levifikri.com</link>
	<description></description>
	<lastBuildDate>Wed, 18 Nov 2009 16:13:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Donate to Wikipedia?</title>
		<link>http://levifikri.com/2009/11/17/donate-to-wikipedia/</link>
		<comments>http://levifikri.com/2009/11/17/donate-to-wikipedia/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 06:04:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://levifikri.com/?p=21</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://wikimediafoundation.org/wiki/Support_Wikipedia/en?utm_source=2009_Notice31&amp;utm_medium=sitenotice&amp;utm_campaign=fundraiser2009&amp;referrer=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FFinal_%28Java%29&amp;target=Support_Wikipedia"><img class="alignnone size-full wp-image-20" title="wikipedia donate" src="http://levifikri.com/wp-content/uploads/2009/11/wikipedia-donate.PNG" alt="wikipedia donate" width="667" height="102" /></a><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Flevifikri.com%2F2009%2F11%2F17%2Fdonate-to-wikipedia%2F&amp;linkname=Donate%20to%20Wikipedia%3F"><img src="http://levifikri.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://levifikri.com/2009/11/17/donate-to-wikipedia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World!!</title>
		<link>http://levifikri.com/2009/11/17/hello-world-2/</link>
		<comments>http://levifikri.com/2009/11/17/hello-world-2/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 20:13:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://levifikri.com/?p=14</guid>
		<description><![CDATA[&#8220;Hello World!&#8221;
-&#62; very popular statement used to introduce VERY basic feature of programming languages. Basically it only prints out &#8220;Hellow World&#8221; on standard output.
In Java, &#8220;Hello World&#8221; class could be written as follow:
?View Code JAVA






1
2
3
4
5
6
7



public class HelloWorld
&#123;
   public static void main&#40;String args&#91;&#93;&#41;
   &#123;
      System.out.println&#40;&#34;Hello World!&#34;&#41;;
  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Hello_world_program">&#8220;Hello World!&#8221;</a></p>
<p>-&gt; very popular statement used to introduce VERY basic feature of programming languages. Basically it only prints out &#8220;Hellow World&#8221; on standard output.</p>
<p>In Java, &#8220;Hello World&#8221; class could be written as follow:</p>
<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p14code4'); return false;">View Code</a> JAVA</span>
<div class="codebox_clear"></div>
</div>
<div class="wp_codebox">
<table width="100%" >
<tr id="p144">
<td class="line_numbers">
<pre>1
2
3
4
5
6
7
</pre>
</td>
<td class="code" id="p14code4">
<pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> HelloWorld
<span style="color: #009900;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">&#40;</span><a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Astring+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">String</span></a> args<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>
   <span style="color: #009900;">&#123;</span>
      <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Asystem+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">System</span></a>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Hello World!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre>
</td>
</tr>
</table>
</div>
<p>In C#:</p>
<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p14code5'); return false;">View Code</a> CSHARP</span>
<div class="codebox_clear"></div>
</div>
<div class="wp_codebox">
<table width="100%" >
<tr id="p145">
<td class="line_numbers">
<pre>1
2
3
4
5
6
7
</pre>
</td>
<td class="code" id="p14code5">
<pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF;">public</span> <span style="color: #FF0000;">class</span> HelloWorld
<span style="color: #000000;">&#123;</span>
   <span style="color: #0600FF;">static</span> <span style="color: #0600FF;">void</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>
   <span style="color: #000000;">&#123;</span>
      <span style="color: #000000;">System</span>.<span style="color: #0000FF;">Console</span>.<span style="color: #0000FF;">WriteLine</span><span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;Hello World!&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #008000;">;</span>
   <span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre>
</td>
</tr>
</table>
</div>
<p>In <a href="http://en.wikipedia.org/wiki/Brainfuck">BrainFuck</a>:</p>
<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p14code6'); return false;">View Code</a> BRAINFUCK</span>
<div class="codebox_clear"></div>
</div>
<div class="wp_codebox">
<table width="100%" >
<tr id="p146">
<td class="line_numbers">
<pre>1
</pre>
</td>
<td class="code" id="p14code6">
<pre class="brainfuck" style="font-family:monospace;">++++++++++[&amp;gt;+++++++&amp;gt;++++++++++&amp;gt;+++&amp;gt;+&amp;lt;&amp;lt;&amp;lt;&amp;lt;-]&amp;gt;++.&amp;gt;+.+++++++..+++.&amp;gt;++.&amp;lt;&amp;lt;+++++++++++++++.&amp;gt;.+++.------.--------.&amp;gt;+.&amp;gt;.</pre>
</td>
</tr>
</table>
</div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Flevifikri.com%2F2009%2F11%2F17%2Fhello-world-2%2F&amp;linkname=Hello%20World%21%21"><img src="http://levifikri.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://levifikri.com/2009/11/17/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
