1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Erlang/OTP R11B Documentation</title>
<style type="text/css">
<!--
BODY { background: white }
BODY { font-family: Verdana, Arial, Helvetica, sans-serif }
TH { font-family: Verdana, Arial, Helvetica, sans-serif }
TD { font-family: Verdana, Arial, Helvetica, sans-serif }
P { font-family: Verdana, Arial, Helvetica, sans-serif }
.header { background: #222; color: #fff }
.app { background: #ccc }
-->
</style>
</head>
<body bgcolor=white text="#000000" link="#0000ff" vlink="#ff00ff"
alink="#ff0000">
<center>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<img alt="Erlang logo" src="erlang.gif">
<p>
<font size="+1">Welcome to Erlang/OTP, a complete<br>
development environment<br>
for concurrent programming.</font>
</center>
<br>
<br>
<br>
<br>
<br>
<font size="+1">
<b>
Some hints that may get you started faster
</b>
</font>
<ul>
<li>The Erlang programming language is described in the book
<em>Concurrent Programming in Erlang, ISBN 0-13-285792-8, 2nd
edition</em>. The first part of the book is available as a <a
href="http://www.erlang.org/download/erlang-book-part1.pdf">PDF document</a>.
However, the language has evolved since the book was written,
and a more up to date description can be found in the <a
href="reference_manual/part_frame.html" target="_top">Erlang
Reference Manual</a>. An Erlang tutorial can be found in
<a href="getting_started/part_frame.html" target="_top">Getting Started With Erlang</a>.
<p>
<li>Erlang/OTP is divided into a number of OTP <a
href="applications.html">applications</a>. An application normally contains
Erlang <a href="man_index.html">modules</a>. Some OTP applications,
such as the C interface <em>Erl_Interface</em>, are written in other languages and have no Erlang
modules.
<p>
Note that functions that are not imported or prefixed with a module
name belong to the module
<a href="../lib/kernel-2.11.2/doc/html/erlang.html" target="_top">erlang</a>
(in the <em>Kernel</em> application).
<p>
<li>On a Unix system you can view the manual pages from the command
line using
<pre>
% erl -man <module>
</pre>
<p>
<li> You can of course use any editor you like to write Erlang
programs, but if you use Emacs there exists editing support such as
indentation, syntax highlighting, electric commands, module name
verification, comment support including paragraph filling, skeletons,
tags support and more. See the <a href="../lib/tools-2.5.2/doc/html/index.html"
target="_top">Tools</a> application for details. <p>
<li>When developing with Erlang/OTP you usually test your programs
from the interactive shell (see <a href="getting_started/part_frame.html"
target="_top">Getting Started With Erlang</a>) where you can call individual
functions. There is also a number of tools available, such as the graphical <a
href="../lib/debugger-3.1/doc/html/index.html" target="_top">Debugger</a>, the process
manager <a href="../lib/pman-2.5.2/doc/html/index.html" target="_top">Pman</a> and table
viewer <a href="../lib/tv-2.1.3/doc/html/index.html" target="_top">TV</a>.
<p> Also note that there are some shell features like history list
(control-p and control-n), in line editing (emacs key bindings) and
module and function name completion (tab) if the module is loaded.
<p>
<li>There are some suggestions for <a
href="http://www.erlang.se/doc/programming_rules.shtml"
target="_top">best practice</a> and <a
href="efficiency_guide/part_frame.html" target="_top">performance
hints</a> using Erlang/OTP. <p>
<li>If you are a paying customer you can get support and request bug
fixes from <a href="mailto:support@erlang.ericsson.se"
><support@erlang.se></a>. OpenSource users can ask questions
and share experiences on the <a href="http://www.erlang.org/faq.html"
target="_top">Erlang questions mailing list</a>. <p>
<li>Before asking a question you can browse the <a
href="http://www.erlang.org/ml-archive/erlang-questions/"
target="_top">mailing list archive</a> and read the <a
href="http://www.erlang.org/faq/t1.html" target="_top">Frequently
Asked Questions</a>. <p>
<li>There is lots more information at <a href="http://www.erlang.se/"
target="_top">http://www.erlang.se</a> and <a
href="http://www.erlang.org/" target="_top">http://www.erlang.org</a>.
<p>
</ul>
</body>
</html>
|