[Haskell] Re: Dynamic Loading?

2005-03-20 Thread Andre Pang
On 20/03/2005, at 10:35 PM, Ashley Yakeley wrote: Let us say you want to have plug-in loadable widgets. You create a widget API, which is in fact a data-type W (which you make an instance of Typeable). You then write an application that loads widgets, using something like this: loadDynamic :: Fil

Re: [Haskell] Dynamic Loading?

2005-03-20 Thread Donald Bruce Stewart
ashley: > Is it possible to do dynamic loading in Haskell? > > Let us say you want to have plug-in loadable widgets. You create a > widget API, which is in fact a data-type W (which you make an instance > of Typeable). You then write an application that loads widgets, using > something like thi

Re: [Haskell] Dynamic Loading?

2005-03-20 Thread Sebastian Sylvan
On Sun, 20 Mar 2005 17:44:22 +0100, Sebastian Sylvan <[EMAIL PROTECTED]> wrote: > I think hslibs is what you're looking for. > And by hslibs I mean hsplugins... /S -- Sebastian Sylvan +46(0)736-818655 UIN: 44640862 ___ Haskell mailing list Haskell@ha

Re: [Haskell] Dynamic Loading?

2005-03-20 Thread Sebastian Sylvan
I think hslibs is what you're looking for. /S On Sun, 20 Mar 2005 03:35:09 -0800, Ashley Yakeley <[EMAIL PROTECTED]> wrote: > Is it possible to do dynamic loading in Haskell? > > Let us say you want to have plug-in loadable widgets. You create a > widget API, which is in fact a data-type W (whi

[Haskell] Dynamic Loading?

2005-03-20 Thread Ashley Yakeley
Is it possible to do dynamic loading in Haskell? Let us say you want to have plug-in loadable widgets. You create a widget API, which is in fact a data-type W (which you make an instance of Typeable). You then write an application that loads widgets, using something like this: loadDynamic ::