02:00 schrieb Ben Millwood:
> Oops, I clicked "reply" instead of "reply to all". Duplicating the
> message below.
> I suppose this means someone is going to get two copies of this. Sorry
> someone!
>
> On Thu, Nov 5, 2009 at 12:56 AM, Ben Millwood
> wrot
way to interact with the user that would allow editing ones
text before sending it to the bot?
I guess we could try with a website, but don't know off hand how to do
that, either, although I've seen beautiful webservers made in Has
Gee, wizzz, folks. Thank you all for the many hints. I can't say yet
which one I'll dive into but I'm in good spirits about Haskell and GUI
now. I like the idea of a functional approach and I don't need
extensive GUIs either, so Grapefruit just added another candidate...
Using the Cocoa API
Seeing my woes with FranTk - what else is out there that people use if
a (simple) GUI is desired for a Haskell app? Just a few textboxes and
a button or two would do me.
Thanks in advance!
Regards,
Torsten
___
Haskell-Cafe mailing list
Haskell-Cafe
Thank you for the encouragement, Justin. Unfortunately I did try that.
But it may also be where my basic understanding is missing: "the
libraries" - do I have to somehow compile all the source or can I just
use it? The source is Haskell, but it all comes with makefiles - are
these for use w
tem like Mac OS. I seems to be more than just
to include the path when starting Hugs...
Thanks in advance for any hints,
regards,
Torsten Otto
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe
a list of all
nodes in the graph.
Thanks a bunch in advance.
Regards,
Torsten Otto
>module Route where
Datatypes for the representation of the graph:
>type Id = Int
>type Weight = Int
>type Edge = (Id,Id)
>type Graph = [ (Edge, Weight) ]
>graph::Graph
>graph = [ ((0,1)