%%%------------------------------------------------------------------- %%% File : orelsebug.erl %%% Author : Tobias Lindahl %%% Description : %%% %%% Created : 14 Nov 2006 by Tobias Lindahl %%%------------------------------------------------------------------- -module(orelsebug). -export([t/1, t1/1]). t(Format) when is_list(Format) -> t1(Format). t1(Format) when is_list(Format) orelse is_binary(Format) -> Format.