<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://coderwiki.org/index.php?action=history&amp;feed=atom&amp;title=Hello_world_program</id>
	<title>Hello world program - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://coderwiki.org/index.php?action=history&amp;feed=atom&amp;title=Hello_world_program"/>
	<link rel="alternate" type="text/html" href="http://coderwiki.org/index.php?title=Hello_world_program&amp;action=history"/>
	<updated>2026-05-19T02:45:26Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://coderwiki.org/index.php?title=Hello_world_program&amp;diff=41&amp;oldid=prev</id>
		<title>Dylan: new</title>
		<link rel="alternate" type="text/html" href="http://coderwiki.org/index.php?title=Hello_world_program&amp;diff=41&amp;oldid=prev"/>
		<updated>2025-08-09T11:08:59Z</updated>

		<summary type="html">&lt;p&gt;new&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;A &amp;#039;Hello World&amp;#039; program is generally the simplest computer [[program]] possible in a [[programming language]].&lt;br /&gt;
&lt;br /&gt;
== Uses of a hello world program ==&lt;br /&gt;
&lt;br /&gt;
* Learning the basic [[syntax]] of a new [[programming language]]: it&amp;#039;s often the easiest thing you can program&lt;br /&gt;
* Testing that a [[build tool]] is set up correctly&lt;br /&gt;
&lt;br /&gt;
== Example: hello world in [[Python]] ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
print(&amp;quot;Hello World&amp;quot;)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example: hello world in [[C]] ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
int main(int argc, char* argv[]) {&lt;br /&gt;
    printf(&amp;quot;Hello World&amp;quot;);&lt;br /&gt;
    return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example: hello world in [[Java]] ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;java&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
// File name: MyProgram.java&lt;br /&gt;
public class MyProgram {&lt;br /&gt;
    public static void main(String[] args) {&lt;br /&gt;
        System.out.println(&amp;quot;Hello World&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dylan</name></author>
	</entry>
</feed>