<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3332987729514683285</id><updated>2011-04-21T12:56:22.788-07:00</updated><category term='rot13'/><category term='Intro'/><title type='text'>My erlang world</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://erlangrulez.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3332987729514683285/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://erlangrulez.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>ASHVALA</name><uri>http://www.blogger.com/profile/10037333986796564094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3332987729514683285.post-7741561006134161998</id><published>2006-08-19T08:42:00.000-07:00</published><updated>2006-08-19T08:49:26.385-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='rot13'/><title type='text'>Second</title><content type='html'>Here is the second erlang program that I learnt today . . .&lt;br /&gt;It is called rot 13&lt;br /&gt;&lt;br /&gt;[addition: it works on number too by shifting by 5]&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;br /&gt;-module(rot13).&lt;br /&gt;-export([start/0]).&lt;br /&gt;&lt;br /&gt;%% run as "# erl -noshell -s rot13 &lt;&gt;&lt;br /&gt; run(io:get_chars('', 1)).&lt;br /&gt;&lt;br /&gt;run(eof) -&gt;&lt;br /&gt;        init:stop();&lt;br /&gt;run([Char]) -&gt;&lt;br /&gt;          io:format("~c", [rot13(Char)]),&lt;br /&gt;          run(io:get_chars('', 1)).&lt;br /&gt;&lt;br /&gt;rot13(X) when X &gt;= $a,&lt;br /&gt;        X &lt;  $n;               X &gt;= $A,&lt;br /&gt;        X &lt;  $N -&gt;&lt;br /&gt;     X+13;&lt;br /&gt;&lt;br /&gt;rot13(X) when X &gt;= $n,&lt;br /&gt;                            X &lt;  ${;               X &gt;= $N,&lt;br /&gt;                            X &lt; $[ -&gt;&lt;br /&gt;          X-13;&lt;br /&gt;&lt;br /&gt;rot13(X) when X &gt;= $0,&lt;br /&gt;                           X &lt;  $5 -&gt;&lt;br /&gt;          X+5;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;rot13(X) when X &gt;= $5,&lt;br /&gt;                            X &lt;  $: -&gt;&lt;br /&gt;          X-5;&lt;br /&gt;&lt;br /&gt;rot13(X) -&gt;&lt;br /&gt;          X.&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3332987729514683285-7741561006134161998?l=erlangrulez.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erlangrulez.blogspot.com/feeds/7741561006134161998/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3332987729514683285&amp;postID=7741561006134161998' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3332987729514683285/posts/default/7741561006134161998'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3332987729514683285/posts/default/7741561006134161998'/><link rel='alternate' type='text/html' href='http://erlangrulez.blogspot.com/2006/08/second.html' title='Second'/><author><name>ASHVALA</name><uri>http://www.blogger.com/profile/10037333986796564094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3332987729514683285.post-69887157908493522</id><published>2006-08-19T01:03:00.000-07:00</published><updated>2006-08-19T01:04:13.327-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Intro'/><title type='text'>Introduction</title><content type='html'>Hello . . .&lt;br /&gt;&lt;br /&gt;This is my first program in erlang&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;br /&gt;-module(l).&lt;br /&gt;-export([len/1)]&lt;br /&gt;&lt;br /&gt;len([])-&gt; 0;&lt;br /&gt;len([H|T]) -&gt;&lt;br /&gt;    1 + len(T).&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3332987729514683285-69887157908493522?l=erlangrulez.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://erlangrulez.blogspot.com/feeds/69887157908493522/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3332987729514683285&amp;postID=69887157908493522' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3332987729514683285/posts/default/69887157908493522'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3332987729514683285/posts/default/69887157908493522'/><link rel='alternate' type='text/html' href='http://erlangrulez.blogspot.com/2006/08/introduction.html' title='Introduction'/><author><name>ASHVALA</name><uri>http://www.blogger.com/profile/10037333986796564094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
