<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>01. Setting Up the Project on Groundhog Learning</title><link>https://groundhoglearning.com/courses/console-game-library/setting-up-the-project/</link><description>Recent content in 01. Setting Up the Project on Groundhog Learning</description><generator>Hugo</generator><language>en-us</language><atom:link href="https://groundhoglearning.com/courses/console-game-library/setting-up-the-project/index.xml" rel="self" type="application/rss+xml"/><item><title>Set Up Your Environment</title><link>https://groundhoglearning.com/courses/console-game-library/setting-up-the-project/set-up-your-environment/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://groundhoglearning.com/courses/console-game-library/setting-up-the-project/set-up-your-environment/</guid><description>&lt;h2 id="-instructions"&gt;📖 Instructions&lt;a class="anchor" href="#-instructions"&gt;#&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;A computer program is a set of instructions that a computer executes to perform a task.&lt;/p&gt;
&lt;p&gt;To write computer programs, programmers use Integrated Development Environments (IDEs).&lt;/p&gt;
&lt;blockquote class='book-hint success'&gt;
&lt;p&gt;🎓 Learn More&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://groundhoglearning.com/vault/programming/computer-program"class="book-link book-link--internal"&gt;
 What Is a Computer Program?&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://groundhoglearning.com/vault/programming/integrated-development-environment"class="book-link book-link--internal"&gt;
 What Is an IDE?&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/blockquote&gt;&lt;p&gt;In this course, we will use Visual Studio Code (VS Code). It is a free, lightweight, and extensible IDE that supports many programming languages.&lt;/p&gt;
&lt;blockquote class='book-hint warning'&gt;
&lt;p&gt;You may use another IDE if you prefer, as long as it supports the desired programming language.&lt;/p&gt;</description></item><item><title>Hello World</title><link>https://groundhoglearning.com/courses/console-game-library/setting-up-the-project/hello-world/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://groundhoglearning.com/courses/console-game-library/setting-up-the-project/hello-world/</guid><description>&lt;h2 id="-instructions"&gt;📖 Instructions&lt;a class="anchor" href="#-instructions"&gt;#&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Traditionally, the first program learners write is a simple program that displays the text &lt;code&gt;Hello World&lt;/code&gt; in the console.&lt;/p&gt;
&lt;div class="book-tabs"data-tabset="tabs-0"&gt;

&lt;input
 type="radio"
 class="toggle"
 name="tabs-0"
 id="tabs-0-0"
 data-tab-id="c"
 checked="checked"
/&gt;

&lt;label for="tabs-0-0" data-tab-id="c"&gt;C#&lt;/label&gt;

&lt;div class="book-tabs-content markdown-inner"&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"&gt;&lt;code class="language-csharp" data-lang="csharp"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;Console.WriteLine(&lt;span style="color:#e6db74"&gt;&amp;#34;Hello World&amp;#34;&lt;/span&gt;);&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;!-- &lt;input
 type="radio"
 class="toggle"
 name="tabs-0"
 id="tabs-0-1"
 data-tab-id="python"
 
/&gt;

&lt;label for="tabs-0-1" data-tab-id="python"&gt;Python&lt;/label&gt;

&lt;div class="book-tabs-content markdown-inner"&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"&gt;&lt;code class="language-python" data-lang="python"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;print(&lt;span style="color:#e6db74"&gt;&amp;#34;Hello World&amp;#34;&lt;/span&gt;);&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;input
 type="radio"
 class="toggle"
 name="tabs-0"
 id="tabs-0-2"
 data-tab-id="javascript"
 
/&gt;

&lt;label for="tabs-0-2" data-tab-id="javascript"&gt;JavaScript&lt;/label&gt;

&lt;div class="book-tabs-content markdown-inner"&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"&gt;&lt;code class="language-javascript" data-lang="javascript"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#a6e22e"&gt;console&lt;/span&gt;.&lt;span style="color:#a6e22e"&gt;log&lt;/span&gt;(&lt;span style="color:#e6db74"&gt;&amp;#34;Hello World&amp;#34;&lt;/span&gt;);&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt; --&gt;

&lt;/div&gt;
&lt;p&gt;This instruction tells the computer to display the text inside the quotes.&lt;/p&gt;
&lt;p&gt;When you run the program, the computer reads the instruction, executes it, and displays the result in the console.&lt;/p&gt;</description></item></channel></rss>