<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Mi padlet supercalifragilísticoespialidoso by </title>
      <link>https://padlet.com/claracicutti97/dlg8094nbbu0glwb</link>
      <description>Hecho con un poco de aventura</description>
      <language>en-us</language>
      <pubDate>2021-08-16 22:25:01 UTC</pubDate>
      <lastBuildDate>2021-08-16 22:36:49 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Definición</title>
         <author></author>
         <link>https://padlet.com/claracicutti97/dlg8094nbbu0glwb/wish/1681084126</link>
         <description><![CDATA[<div>Al utilizar código declarativo trabajamos sobre la lógica de <strong>qué </strong>se va a ejecutar, sin indicar los detalles de cómo lo va a hacer.<br>Nuestro código va a estar compuesto por un conjunto de funciones que van a realizar la tarea que definamos.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-08-16 22:26:08 UTC</pubDate>
         <guid>https://padlet.com/claracicutti97/dlg8094nbbu0glwb/wish/1681084126</guid>
      </item>
      <item>
         <title>Ejemplo codigo declarativo</title>
         <author></author>
         <link>https://padlet.com/claracicutti97/dlg8094nbbu0glwb/wish/1681085698</link>
         <description><![CDATA[<div>-module(fibonacci).<br>&nbsp;| -export([fibonacci/1]).<br>&nbsp;|&nbsp;<br><br>&nbsp;| -spec fibonacci(non_neg_integer()) -&gt; non_neg_integer().<br>&nbsp;| fibonacci(0) -&gt; 0;<br>&nbsp;| fibonacci(1) -&gt; 1;<br>&nbsp;| fibonacci(N) -&gt; fibonacci(N - 1) + fibonacci(N - 2).</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-08-16 22:28:33 UTC</pubDate>
         <guid>https://padlet.com/claracicutti97/dlg8094nbbu0glwb/wish/1681085698</guid>
      </item>
      <item>
         <title>Ejemplo codigo imperativo</title>
         <author></author>
         <link>https://padlet.com/claracicutti97/dlg8094nbbu0glwb/wish/1681087080</link>
         <description><![CDATA[<div>function fibonacci(n) {<br>&nbsp;| &nbsp; var actual, ant1, ant2;<br>&nbsp;| &nbsp; if (n === 0) {<br>&nbsp;|&nbsp; &nbsp; &nbsp;actual = 0;<br>&nbsp;| &nbsp; } else if (n === 1) {<br>&nbsp;|&nbsp; &nbsp; &nbsp;actual = 1;<br>&nbsp;| &nbsp; } else {<br>&nbsp;|&nbsp; &nbsp; &nbsp;ant1 = ant2 = 1;<br>&nbsp;|&nbsp; &nbsp; &nbsp;for (i = 2; i &lt; n; i++) {<br>&nbsp;|&nbsp; &nbsp; &nbsp; &nbsp;actual = ant1 + ant2;<br>&nbsp;|&nbsp; &nbsp; &nbsp; &nbsp;ant2 = ant1;<br>&nbsp;|&nbsp; &nbsp; &nbsp; &nbsp;ant1 = actual;<br>&nbsp;|&nbsp; &nbsp; &nbsp;}<br>&nbsp;| &nbsp; }<br>&nbsp;| &nbsp; return actual;<br>&nbsp;| }</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-08-16 22:30:57 UTC</pubDate>
         <guid>https://padlet.com/claracicutti97/dlg8094nbbu0glwb/wish/1681087080</guid>
      </item>
      <item>
         <title>Definicion</title>
         <author></author>
         <link>https://padlet.com/claracicutti97/dlg8094nbbu0glwb/wish/1681088868</link>
         <description><![CDATA[<div>Utilizamos el<strong> paradigma imperativo<br></strong>cuando al escribir nuestro código nos enfocamos en <strong>cómo</strong> se va a ejecutar a través de diversas operaciones y el flujo de trabajo que va a realizar.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-08-16 22:33:54 UTC</pubDate>
         <guid>https://padlet.com/claracicutti97/dlg8094nbbu0glwb/wish/1681088868</guid>
      </item>
   </channel>
</rss>
