1-module(appmod2).
2-export([out/1]).
3
4out(Arg) ->
5    Path  = yaws_api:arg_server_path(Arg),
6    Stack = get(appmod_stack),
7    put(appmod_stack, Stack++", appmod2["++Path++"]"),
8    {page, "/appmod1"}.
9