blob: 2b70503144f496b639ade17c08f61f1ffea0fbee (
plain) (
tree)
|
|
%%%-------------------------------------------------------------------
%%% File : atom_call.erl
%%% Author : Tobias Lindahl <[email protected]>
%%% Description :
%%%
%%% Created : 10 Dec 2007 by Tobias Lindahl <[email protected]>
%%%-------------------------------------------------------------------
-module(atom_call).
-export([f/0,g/0]).
f() -> ok.
g() -> F = f, F().
|