Erlang (programming language)/Tutorials/Hello: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

8 August 2009

22 April 2008

19 April 2008

  • curprev 19:2519:25, 19 April 2008imported>Eric Evers 962 bytes +962 New page: =Hello World (serial)= ==Code Example== -module(hello). -export([start/0]). start() -> io:format("Hello, world!\n"). ==Analysis of the example== The Hello World program (se...