blob: a0aa2a558375f97444bd0557385af7a4071beef4 [file] [log] [blame]
David Reiss1c1ca742008-06-10 22:57:21 +00001-module(test_handler).
2
3-export([handle_function/2]).
4
5handle_function(add, Params = {A, B}) ->
6 io:format("Got params: ~p~n", [Params]),
7 {reply, A + B}.