<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>C++ by </title>
      <link>https://padlet.com/luke5083/o3bamlff173p</link>
      <description>All about C++.</description>
      <language>en-us</language>
      <pubDate>2014-04-28 18:27:55 UTC</pubDate>
      <lastBuildDate>2014-04-30 17:58:05 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>http://d20uo2axdbh83k.cloudfront.net/20140430/fbe3bc787c0140bbef55f31b9de6dc3d.jpg</url>
      </image>
      <item>
         <title>Introduction</title>
         <author>luke5083</author>
         <link>https://padlet.com/luke5083/o3bamlff173p/wish/26928237</link>
         <description><![CDATA[<p>C++ is very simple to learn but it can get complacated. Just follow this and you'll learn everything!</p>]]></description>
         <enclosure url="" />
         <pubDate>2014-04-29 18:03:52 UTC</pubDate>
         <guid>https://padlet.com/luke5083/o3bamlff173p/wish/26928237</guid>
      </item>
      <item>
         <title>Starting Out</title>
         <author>luke5083</author>
         <link>https://padlet.com/luke5083/o3bamlff173p/wish/26928638</link>
         <description><![CDATA[<p>The fisrt thing to do is tell the computer how your're going to write it.</p><pre>include &lt;iostream&gt;
using namespace std;</pre><p>This is the basic code to start a program this tells C++ that it needs to use this format of code. You need to add this at the begging of each file, on the first two lines of code.</p>]]></description>
         <enclosure url="" />
         <pubDate>2014-04-29 18:08:01 UTC</pubDate>
         <guid>https://padlet.com/luke5083/o3bamlff173p/wish/26928638</guid>
      </item>
      <item>
         <title>Saving a File</title>
         <author>luke5083</author>
         <link>https://padlet.com/luke5083/o3bamlff173p/wish/26929145</link>
         <description><![CDATA[<p>In order to save a file you can use a special complier for C++ or use a blank text file. But you always need to save it as a ".cpp" file.</p>]]></description>
         <enclosure url="" />
         <pubDate>2014-04-29 18:12:26 UTC</pubDate>
         <guid>https://padlet.com/luke5083/o3bamlff173p/wish/26929145</guid>
      </item>
      <item>
         <title>Functions</title>
         <author>luke5083</author>
         <link>https://padlet.com/luke5083/o3bamlff173p/wish/26929478</link>
         <description><![CDATA[<p>Now we are going to learn how to bulid a basic function. A function is what makes the program do things. There can be more than one function. We are going to learn how to print things on a screen.</p><pre>int main(){</pre><p>}

The first line of code is the start of the function. The <em>int </em>part tells it what it is working with. The <em>main</em> part is the name of the function. The<em> () </em>part are parameters, we will learn about those later. The <em>{}</em> part is what is inside of the function, it's like the bread of a sandwich, it hold everything in. You can change the name to anything you want.</p>]]></description>
         <enclosure url="" />
         <pubDate>2014-04-29 18:15:20 UTC</pubDate>
         <guid>https://padlet.com/luke5083/o3bamlff173p/wish/26929478</guid>
      </item>
      <item>
         <title>Displaying Text</title>
         <author>luke5083</author>
         <link>https://padlet.com/luke5083/o3bamlff173p/wish/26930927</link>
         <description><![CDATA[<p>Now for the fun part. Displaying text! </p><p>You always put it inside of a function, but it cannot be inside of a void function, which we'll learn about later. You use the <em>cout</em> function which means command out.    </p><pre>cout &lt;&lt; "Hi" &lt;&lt; endl;
</pre><p>This the &lt;&lt; is what it is out putting it  could be text in parenthes or a varriable&nbsp;which we will get to later on.</p>]]></description>
         <enclosure url="" />
         <pubDate>2014-04-29 18:26:35 UTC</pubDate>
         <guid>https://padlet.com/luke5083/o3bamlff173p/wish/26930927</guid>
      </item>
      <item>
         <title>Varribles</title>
         <author>luke5083</author>
         <link>https://padlet.com/luke5083/o3bamlff173p/wish/27926237</link>
         <description><![CDATA[<p>A varrible is something that holds something else. There are many types of varribles like <em>int </em>that holds numbers, <em>string </em>that holds letters and numbers, and <em>double </em>which hold decimals like 5.41. We are going to make an<em> int </em>varrible and display it on the screen. Again make sure you put it in the <em>main</em> function.</p><pre>int a = 1;</pre><p>cout &lt;&lt; a &lt;&lt; endl;
The <em>int</em> is what tells C++ to store a whole number. The <em>a</em> is the name that we gave our</p>]]></description>
         <enclosure url="" />
         <pubDate>2014-05-13 18:08:47 UTC</pubDate>
         <guid>https://padlet.com/luke5083/o3bamlff173p/wish/27926237</guid>
      </item>
   </channel>
</rss>
