blob: 2b70503144f496b639ade17c08f61f1ffea0fbee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
%%%-------------------------------------------------------------------
%%% 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().
|