<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wikiprogramming.alfredgg.dev/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wikiprogramming.alfredgg.dev/feed.php">
        <title>Programming wiki2:elm</title>
        <description></description>
        <link>https://wikiprogramming.alfredgg.dev/</link>
        <image rdf:resource="https://wikiprogramming.alfredgg.dev/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-05-13T10:19:33+0000</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wikiprogramming.alfredgg.dev/doku.php?id=wiki2:elm:basic&amp;rev=1589016310&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wikiprogramming.alfredgg.dev/lib/tpl/dokuwiki/images/favicon.ico">
        <title>Programming</title>
        <link>https://wikiprogramming.alfredgg.dev/</link>
        <url>https://wikiprogramming.alfredgg.dev/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="https://wikiprogramming.alfredgg.dev/doku.php?id=wiki2:elm:basic&amp;rev=1589016310&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-05-09T09:25:10+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Basic Elm</title>
        <link>https://wikiprogramming.alfredgg.dev/doku.php?id=wiki2:elm:basic&amp;rev=1589016310&amp;do=diff</link>
        <description>Basic Elm

Basic actions


&quot;hello&quot; ++ &quot; world&quot;  -- Concatenate strings
'a' -- Is a character
&quot;a&quot; -- Is a string
1 /= 2  -- True, 1 != 2 
c = 1 == 1 -- True
[1, 2, 3] ++ [4, 5, 6] -- Concatenar listas
List.range 1 100 -- Creates a list from 1 to 100
4 :: [1, 2, 3]  -- [4, 1, 2, 3]
String.isEmpty &quot;am I empty&quot;  -- False
String.join &quot;, &quot; (List.sort [&quot;Bob&quot; , &quot;Zack&quot;, &quot;Mike&quot;])

answer = 45
if answer &lt; 42 then &quot;Under 42&quot; else &quot;42 or more&quot;</description>
    </item>
</rdf:RDF>
