Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-updates > by-pkgid > eb1ec8bb814fe4d749258d46ae8ea988 > files > 67

erlang-doc-18.3.2-9.1.mga6.noarch.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../otp_doc.css" type="text/css">
<title>Erlang -- Getting Started With Erlang</title>
</head>
<body bgcolor="white" text="#000000" link="#0000ff" vlink="#ff00ff" alink="#ff0000"><div id="container">
<script id="js" type="text/javascript" language="JavaScript" src="../js/flipmenu/flipmenu.js"></script><script id="js2" type="text/javascript" src="../js/erlresolvelinks.js"></script><script language="JavaScript" type="text/javascript">
            <!--
              function getWinHeight() {
                var myHeight = 0;
                if( typeof( window.innerHeight ) == 'number' ) {
                  //Non-IE
                  myHeight = window.innerHeight;
                } else if( document.documentElement && ( document.documentElement.clientWidth ||
                                                         document.documentElement.clientHeight ) ) {
                  //IE 6+ in 'standards compliant mode'
                  myHeight = document.documentElement.clientHeight;
                } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
                  //IE 4 compatible
                  myHeight = document.body.clientHeight;
                }
                return myHeight;
              }

              function setscrollpos() {
                var objf=document.getElementById('loadscrollpos');
                 document.getElementById("leftnav").scrollTop = objf.offsetTop - getWinHeight()/2;
              }

              function addEvent(obj, evType, fn){
                if (obj.addEventListener){
                obj.addEventListener(evType, fn, true);
                return true;
              } else if (obj.attachEvent){
                var r = obj.attachEvent("on"+evType, fn);
                return r;
              } else {
                return false;
              }
             }

             addEvent(window, 'load', setscrollpos);

             //--></script><div id="leftnav"><div class="innertube">
<img alt="Erlang logo" src="../erlang-logo.png"><br><small><a href="users_guide.html">User's Guide</a><br><a href="../pdf/otp-system-documentation-7.3.1.pdf">PDF</a><br><a href="../index.html">Top</a></small><p><strong>Getting Started with Erlang</strong><br><strong>User's Guide</strong><br><small>Version 7.3.1</small></p>
<br><a href="javascript:openAllFlips()">Expand All</a><br><a href="javascript:closeAllFlips()">Contract All</a><p><small><strong>Chapters</strong></small></p>
<ul class="flipMenu" imagepath="../js/flipmenu">
<li id="no" title="Introduction" expanded="false">Introduction<ul>
<li><a href="intro.html">
              Top of chapter
            </a></li>
<li title="Prerequisites"><a href="intro.html#idp281230204">Prerequisites</a></li>
<li title="Omitted Topics"><a href="intro.html#idp281296740">Omitted Topics</a></li>
</ul>
</li>
<li id="no" title="Sequential Programming" expanded="false">Sequential Programming<ul>
<li><a href="seq_prog.html">
              Top of chapter
            </a></li>
<li title="The Erlang Shell"><a href="seq_prog.html#idp280867116">The Erlang Shell</a></li>
<li title="Modules and Functions"><a href="seq_prog.html#idp281301196">Modules and Functions</a></li>
<li title="Atoms"><a href="seq_prog.html#idp280980780">Atoms</a></li>
<li title="Tuples"><a href="seq_prog.html#idp281373380">Tuples</a></li>
<li title="Lists"><a href="seq_prog.html#idp280988244">Lists</a></li>
<li title="Maps"><a href="seq_prog.html#idp281292780">Maps</a></li>
<li title="Standard Modules and Manual Pages"><a href="seq_prog.html#idp281256484">Standard Modules and Manual Pages</a></li>
<li title="Writing Output to a Terminal"><a href="seq_prog.html#idp281225364">Writing Output to a Terminal</a></li>
<li title="A Larger Example"><a href="seq_prog.html#idp280901828">A Larger Example</a></li>
<li title="Matching, Guards, and Scope of Variables"><a href="seq_prog.html#idp280991068">Matching, Guards, and Scope of Variables</a></li>
<li title="More About Lists"><a href="seq_prog.html#idp281562988">More About Lists</a></li>
<li title="If and Case"><a href="seq_prog.html#idp281581828">If and Case</a></li>
<li title="Built-In Functions (BIFs)"><a href="seq_prog.html#idp281597868">Built-In Functions (BIFs)</a></li>
<li title="Higher-Order Functions (Funs)"><a href="seq_prog.html#idp281610788">Higher-Order Functions (Funs)</a></li>
</ul>
</li>
<li id="no" title="Concurrent Programming" expanded="false">Concurrent Programming<ul>
<li><a href="conc_prog.html">
              Top of chapter
            </a></li>
<li title="Processes"><a href="conc_prog.html#idp281631836">Processes</a></li>
<li title="Message Passing"><a href="conc_prog.html#idp281641636">Message Passing</a></li>
<li title="Registered Process Names"><a href="conc_prog.html#idp281664988">Registered Process Names</a></li>
<li title="Distributed Programming"><a href="conc_prog.html#idp281671924">Distributed Programming</a></li>
<li title="A Larger Example"><a href="conc_prog.html#idp281692036">A Larger Example</a></li>
</ul>
</li>
<li id="no" title="Robustness" expanded="false">Robustness<ul>
<li><a href="robustness.html">
              Top of chapter
            </a></li>
<li title="Time-outs"><a href="robustness.html#idp281742052">Time-outs</a></li>
<li title="Error Handling"><a href="robustness.html#idp281750788">Error Handling</a></li>
<li title="The Larger Example with Robustness Added"><a href="robustness.html#idp281765524">The Larger Example with Robustness Added</a></li>
</ul>
</li>
<li id="no" title="Records and Macros" expanded="false">Records and Macros<ul>
<li><a href="record_macros.html">
              Top of chapter
            </a></li>
<li title="The Larger Example Divided into Several Files"><a href="record_macros.html#idp281781356">The Larger Example Divided into Several Files</a></li>
<li title="Header Files"><a href="record_macros.html#idp281794484">Header Files</a></li>
<li title="Records"><a href="record_macros.html#idp281797356">Records</a></li>
<li title="Macros"><a href="record_macros.html#idp281803804">Macros</a></li>
</ul>
</li>
</ul>
</div></div>
<div id="content">
<div class="innertube">
<div class="frontpage"></div>
<center><h1>Getting Started with Erlang User's Guide</h1></center>
<center><h4>Version 7.3.1</h4></center>
<center><h4>January  1, 2018</h4></center>
<div class="extrafrontpageinfo"><center></center></div>
</div>
<div class="footer">
<hr>
<p>Copyright © 1996-2018 Ericsson AB. All Rights Reserved.</p>
</div>
</div>
</div></body>
</html>