Re: [Haskell-cafe] ANN: Scripting.Lua 0.1

2007-06-26 Thread Donald Bruce Stewart
gracjanpolak:
> 
> Hi all,
> 
> I'm pleased to announce the first public release of Scripting.Lua.
> 
> The package hslua-0.1 contains Haskell FFI bindings for a Lua interpreter
> along with some Haskell utility functions simplifying Haskell to Lua and
> Lua to Haskell calls. Full Lua interpreter is included in the package.
> 
> Example
> 
>  import qualified Scripting.Lua as Lua
> 
>  main = do
>  l <- Lua.newstate
>  Lua.openlibs l
>  Lua.callproc l "print" "Hello from Lua"
>  Lua.close l
> 
> More information
> 
>  http://home.agh.edu.pl/~gpolak/hslua
> 
> The Lua language
>
>  http://www.lua.org
> 
> --
> Gracjan

Great work! would you like to upload it to hackage.haskell.org too, so
it will be archived for the ages?

-- Don
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


[Haskell-cafe] ANN: Scripting.Lua 0.1

2007-06-26 Thread Gracjan Polak

Hi all,

I'm pleased to announce the first public release of Scripting.Lua.

The package hslua-0.1 contains Haskell FFI bindings for a Lua interpreter
along with some Haskell utility functions simplifying Haskell to Lua and
Lua to Haskell calls. Full Lua interpreter is included in the package.

Example

 import qualified Scripting.Lua as Lua

 main = do
 l <- Lua.newstate
 Lua.openlibs l
 Lua.callproc l "print" "Hello from Lua"
 Lua.close l

More information

 http://home.agh.edu.pl/~gpolak/hslua

The Lua language
   
 http://www.lua.org

--
Gracjan


___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe