~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/ic/examples/pre_post_condition/m_i_impl.erl

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
%% Interface functions
28
28
-export([f/2, g/2]).
29
29
 
30
 
init(Env) ->
 
30
init(_Env) ->
31
31
    {ok, []}.
32
32
 
33
 
terminate(From, Reason) ->
 
33
terminate(_From, _Reason) ->
34
34
    ok.
35
35
 
36
36
f(State, In) ->
37
37
    io:format("f working ....\n", []),
38
38
    {reply, In, State}.
39
39
 
40
 
g(State, In)  ->
 
40
g(State, _In)  ->
41
41
    io:format("g working ....\n", []),
42
42
    {noreply, State}.
43
43