aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_docgen/doc/src/gazonk
blob: 1cf0b8f7bcf38ab7d2207f8110ac01aaa1f16785 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
This example code is used in block_tags.xml.

%% Erlang example
-module(gazonk).

start() ->
    {error,"Pid required!"}.

start(Pid) ->
    spawn(smalltalk,main,[]).
%% Erlang example

// A little C example
int main() {
  for(;;);
}
// A little C example