diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2011-10-11 15:05:38 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2011-10-11 15:05:38 +0200 |
commit | 1efec3952b780cc675ae111313017c3b91d20a01 (patch) | |
tree | 8a2d77b52e2c558976c8d2d362edf8837e2066ea /src/slang_lib.erl | |
download | erlang-slang-fork-1efec3952b780cc675ae111313017c3b91d20a01.tar.gz |
initial commit based on erlang-slang 1.0 release (debian tar ball)
Diffstat (limited to 'src/slang_lib.erl')
-rw-r--r-- | src/slang_lib.erl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/slang_lib.erl b/src/slang_lib.erl new file mode 100644 index 0000000..76f5550 --- /dev/null +++ b/src/slang_lib.erl @@ -0,0 +1,15 @@ +%%%---------------------------------------------------------------------- +%%% File : slang_lib.erl +%%% Author : Claes Wikstrom <klacke@kaja.hemma.net> +%%% Purpose : +%%% Created : 4 Dec 2000 by Claes Wikstrom <klacke@kaja.hemma.net> +%%%---------------------------------------------------------------------- + +-module(slang_lib). +-author('klacke@kaja.hemma.net'). + +-include("slang.hrl"). +-compile(export_all). + + +%% higher level functions for slang |