blob: 8479fc33ccdfba16ddae978513169baca66a0983 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
%%%-------------------------------------------------------------------
%%% File : orelsebug.erl
%%% Author : Tobias Lindahl <[email protected]>
%%% Description :
%%%
%%% Created : 14 Nov 2006 by Tobias Lindahl <[email protected]>
%%%-------------------------------------------------------------------
-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.
|